:root {
  --bg: #07080b;
  --bg-soft: #0d0f14;
  --panel: rgba(18, 20, 27, 0.72);
  --panel-solid: #11131a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f3ef;
  --muted: #a3a4ad;
  --muted-2: #6d707b;
  --acid: #d8ff65;
  --violet: #a88cff;
  --cyan: #78e7ff;
  --warm: #ffbe8b;
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1400px;
  --header-h: 84px;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "Manrope", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(168, 140, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(120, 231, 255, 0.08), transparent 24%),
    var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.agent-open, body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { color: #08090d; background: var(--acid); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 500;
  padding: 12px 16px;
  color: #08090d;
  background: var(--acid);
  border-radius: 10px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
#ambientCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.44;
}
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 480px;
  height: 480px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168, 140, 255, 0.085), rgba(120, 231, 255, 0.025) 42%, transparent 72%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
body:hover .cursor-glow { opacity: 1; }

.site-header {
  position: fixed;
  left: 22px;
  right: 22px;
  top: 16px;
  z-index: 100;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.site-header.scrolled { background: rgba(8, 9, 13, 0.88); border-color: rgba(255,255,255,0.16); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; }
.brand-mark { position: relative; display: inline-grid; place-items: center; width: 29px; height: 29px; }
.brand-mark::before, .brand-mark::after, .brand-mark i {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-mark::before { width: 25px; height: 12px; transform: rotate(45deg); }
.brand-mark::after { width: 25px; height: 12px; transform: rotate(-45deg); }
.brand-mark i:first-child { width: 6px; height: 6px; background: currentColor; }
.brand-mark i:last-child { width: 16px; height: 16px; border-color: rgba(216,255,101,0.5); animation: markPulse 3s ease-in-out infinite; }
@keyframes markPulse { 50% { transform: scale(1.45); opacity: 0; } }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { position: relative; color: #c8c8ce; font-size: 13px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--acid); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.availability { display: inline-flex; align-items: center; gap: 8px; color: #b4b6bf; font: 10px var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.availability i, .agent-status i, .telemetry-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(216,255,101,0.08), 0 0 18px rgba(216,255,101,0.5); }
.menu-toggle { display: none; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--text); cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 1px; background: currentColor; transition: transform 0.3s ease; }
.menu-toggle span + span { margin-top: 6px; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: grid; align-items: center; padding: 110px 28px 40px; background: rgba(7,8,11,0.97); backdrop-filter: blur(24px); visibility: hidden; opacity: 0; transition: opacity .3s ease, visibility .3s ease; }
.mobile-menu[aria-hidden="false"] { visibility: visible; opacity: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: clamp(34px, 11vw, 58px); letter-spacing: -0.05em; }
.mobile-menu a span { color: var(--muted-2); font: 11px var(--mono); letter-spacing: 0.08em; }
.mobile-menu .button { margin-top: 24px; }

.button {
  --button-bg: transparent;
  --button-color: var(--text);
  --button-border: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  color: var(--button-color);
  background: var(--button-bg);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button b { font-size: 17px; font-weight: 400; }
.button-primary { --button-bg: var(--acid); --button-color: #08090d; --button-border: var(--acid); box-shadow: 0 14px 50px rgba(216,255,101,0.12); }
.button-primary:hover { background: #ebffab; border-color: #ebffab; }
.button-light { --button-bg: var(--text); --button-color: #08090d; --button-border: var(--text); }
.button-light:hover { background: var(--acid); border-color: var(--acid); }
.button-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.34); }
.button-compact { min-height: 42px; padding: 0 17px; font-size: 12px; }
.button-large { min-height: 64px; padding: 0 30px; font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #c4c5cc; font-size: 13px; }
.text-link span { transition: transform 0.25s ease; }
.text-link:hover span { transform: translateY(4px); }

main, .site-footer { position: relative; z-index: 3; }
.section-pad { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 140px 0; }
.section-index { color: #81838d; font: 10px var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
.kicker { margin: 0 0 26px; color: var(--acid); font: 11px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(.2,.65,.2,1), transform 0.9s cubic-bezier(.2,.65,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.hero {
  position: relative;
  min-height: 100svh;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 150px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}
.hero::before { content: ""; position: absolute; inset: 110px auto auto 52%; width: 42%; height: 62%; border-radius: 50%; background: radial-gradient(circle, rgba(168,140,255,.08), transparent 68%); filter: blur(30px); pointer-events: none; }
.eyebrow { display: flex; gap: 22px; margin-bottom: 34px; color: #8a8c95; font: 10px var(--mono); letter-spacing: .12em; }
.eyebrow span:first-child { color: var(--acid); }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(65px, 7.8vw, 132px); font-weight: 500; line-height: .91; letter-spacing: -0.075em; }
.hero h1 em { position: relative; font-style: normal; color: transparent; background: linear-gradient(100deg, var(--text) 0%, var(--violet) 40%, var(--cyan) 76%, var(--acid) 100%); background-clip: text; -webkit-background-clip: text; }
.hero h1 em::after { content: ""; position: absolute; left: 4%; right: -1%; bottom: -8px; height: 2px; background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent); transform: scaleX(.72); opacity: .7; }
.hero-lede { max-width: 590px; margin: 36px 0 0; color: #b8b9c1; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; letter-spacing: -0.02em; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 620px; margin-top: 62px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 10px; }
.hero-meta strong { color: var(--acid); font: 9px var(--mono); }
.hero-meta span { color: #858790; font-size: 11px; }

.hero-visual { position: relative; min-height: 690px; perspective: 1200px; }
.hero-orbit { position: absolute; left: 50%; top: 47%; width: min(31vw, 510px); aspect-ratio: 1; transform: translate(-50%, -50%); display: grid; place-items: center; }
.hero-orbit::before { content: ""; position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle at 36% 30%, rgba(255,255,255,.18), rgba(168,140,255,.12) 22%, rgba(9,10,15,.22) 52%, transparent 72%); filter: blur(1px); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; left: 50%; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 16px rgba(216,255,101,.8); }
.orbit-one { width: 100%; height: 44%; transform: rotate(24deg); animation: orbitOne 15s linear infinite; }
.orbit-two { width: 82%; height: 82%; transform: rotate(-18deg); border-color: rgba(168,140,255,.2); animation: orbitTwo 22s linear infinite; }
.orbit-three { width: 61%; height: 98%; transform: rotate(58deg); border-color: rgba(120,231,255,.17); animation: orbitThree 18s linear infinite reverse; }
@keyframes orbitOne { to { transform: rotate(384deg); } }
@keyframes orbitTwo { to { transform: rotate(-378deg); } }
@keyframes orbitThree { to { transform: rotate(418deg); } }
.core-sphere { position: relative; z-index: 2; width: 164px; height: 164px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: radial-gradient(circle at 33% 28%, rgba(255,255,255,.24), rgba(168,140,255,.14) 20%, rgba(12,13,19,.96) 67%); box-shadow: inset -18px -24px 38px rgba(0,0,0,.45), 0 0 90px rgba(168,140,255,.18); animation: coreFloat 6s ease-in-out infinite; }
.core-sphere span { font-size: 44px; font-weight: 600; letter-spacing: -.08em; }
.core-sphere small { position: absolute; bottom: 30px; color: #8d8f99; font: 7px/1.5 var(--mono); letter-spacing: .15em; text-align: center; }
@keyframes coreFloat { 50% { transform: translateY(-10px) rotate(3deg); } }
.orbit-node { position: absolute; z-index: 3; padding: 7px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #d9d8dd; background: rgba(10,11,16,.72); backdrop-filter: blur(10px); font: 8px var(--mono); letter-spacing: .11em; }
.node-one { left: -2%; top: 38%; }
.node-two { right: 5%; top: 12%; color: var(--acid); }
.node-three { right: -2%; bottom: 22%; }
.node-four { left: 14%; bottom: 5%; color: var(--cyan); }
.glass-card { border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, rgba(25,27,35,.72), rgba(10,11,16,.72)); backdrop-filter: blur(18px); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.telemetry-card { position: absolute; right: -1%; top: 7%; width: 258px; padding: 17px; border-radius: 19px; transform: rotate(2deg); }
.telemetry-head, .micro-chat-head { display: flex; align-items: center; justify-content: space-between; color: #9b9da6; font: 8px var(--mono); letter-spacing: .12em; }
.journey-row { display: grid; grid-template-columns: 22px 1fr auto; gap: 8px; align-items: center; margin-top: 15px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); color: #797b84; font-size: 9px; }
.journey-row b { font: 8px var(--mono); }
.journey-row em { color: #6f7179; font: 7px var(--mono); font-style: normal; }
.journey-row.active { color: #dddde2; }
.journey-row.active b { color: var(--acid); }
.telemetry-score { display: flex; align-items: flex-end; margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.telemetry-score span { margin-right: auto; color: #7f818a; font: 8px var(--mono); letter-spacing: .1em; }
.telemetry-score strong { font-size: 28px; line-height: .8; }
.telemetry-score small { color: #777983; font: 8px var(--mono); }
.micro-chat { position: absolute; left: -5%; bottom: 8%; width: 285px; padding: 17px; border-radius: 19px; transform: rotate(-2.4deg); }
.avatar-dot { width: 22px; height: 22px; display: inline-grid; place-items: center; margin-right: 8px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, var(--violet) 22%, #1a1b24 74%); }
.micro-chat-head { justify-content: flex-start; }
.micro-chat-head b { font-weight: 400; }
.micro-chat-head i { margin-left: auto; color: var(--acid); font-style: normal; }
.micro-chat p { margin: 18px 0 14px; color: #d4d4da; font-size: 12px; line-height: 1.45; }
.micro-options { display: flex; gap: 7px; flex-wrap: wrap; }
.micro-options span { padding: 8px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #9c9ea7; font-size: 8px; }
.hero-caption { position: absolute; right: 0; bottom: 2%; display: grid; gap: 5px; text-align: right; }
.hero-caption span { color: #6e707a; font: 8px var(--mono); letter-spacing: .12em; }
.hero-caption strong { font-size: 11px; letter-spacing: .06em; }

.ticker { position: relative; z-index: 4; overflow: hidden; padding: 17px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(7,8,11,.62); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 22px; animation: ticker 34s linear infinite; }
.ticker span { color: #a5a6af; font: 10px var(--mono); letter-spacing: .12em; }
.ticker i { color: var(--acid); font-style: normal; font-size: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto { display: grid; grid-template-columns: .7fr 2.1fr .9fr; gap: clamp(34px, 7vw, 110px); align-items: start; }
.manifesto-copy h2 { max-width: 950px; margin: 0; font-size: clamp(48px, 6vw, 96px); font-weight: 500; line-height: .98; letter-spacing: -0.065em; }
.manifesto-copy h2 span { color: #8f9099; }
.manifesto-copy > p:last-child { max-width: 680px; margin: 34px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.manifesto-note { padding-top: 42px; }
.manifesto-note span { color: var(--acid); font: 9px var(--mono); letter-spacing: .12em; }
.manifesto-note p { color: #94969f; font-size: 12px; line-height: 1.7; }

.section-heading { display: grid; grid-template-columns: 1.65fr .7fr; gap: 70px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { margin: 18px 0 0; font-size: clamp(48px, 5.8vw, 84px); font-weight: 500; line-height: .98; letter-spacing: -0.06em; }
.section-heading > p { max-width: 470px; margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.capabilities { border-top: 1px solid var(--line); }
.capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.capability-card { position: relative; min-height: 540px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(21,23,30,.76), rgba(9,10,14,.92)); transform-style: preserve-3d; }
.capability-card::after { content: ""; position: absolute; inset: auto -20% -45% 20%; height: 70%; border-radius: 50%; background: radial-gradient(circle, rgba(168,140,255,.12), transparent 65%); filter: blur(22px); pointer-events: none; }
.card-top { display: flex; justify-content: space-between; color: #777983; font: 9px var(--mono); letter-spacing: .1em; }
.card-top span { color: var(--acid); }
.card-top i { font-style: normal; }
.capability-card h3 { max-width: 440px; margin: 62px 0 16px; font-size: clamp(30px, 3vw, 50px); font-weight: 500; letter-spacing: -0.045em; }
.capability-card > p { max-width: 500px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.strategy-card > p { position: relative; z-index: 3; }
.mini-wireframe { position: absolute; right: 30px; bottom: 28px; z-index: 1; pointer-events: none; width: 48%; min-width: 260px; aspect-ratio: 1.25; padding: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(6,7,10,.55); transform: rotate(-3deg); }
.wire-nav { width: 100%; height: 7px; border-radius: 8px; background: linear-gradient(90deg, rgba(255,255,255,.35) 0 18%, transparent 18% 70%, rgba(255,255,255,.15) 70%); }
.wire-copy { width: 58%; margin-top: 35px; }
.wire-copy i { display: block; height: 8px; margin-bottom: 8px; border-radius: 5px; background: rgba(255,255,255,.15); }
.wire-copy i:first-child { height: 22px; background: linear-gradient(90deg, rgba(255,255,255,.48), rgba(168,140,255,.35)); }
.wire-copy i:last-child { width: 72%; }
.wire-cta { width: 82px; height: 25px; margin-top: 16px; border-radius: 999px; background: var(--acid); }
.wire-panel { position: absolute; right: 15px; top: 43px; width: 31%; height: 56%; display: grid; gap: 7px; padding: 9px; border-radius: 12px; border: 1px solid rgba(255,255,255,.09); }
.wire-panel span { border-radius: 6px; background: rgba(255,255,255,.08); }
.motion-card { background: radial-gradient(circle at 72% 78%, rgba(120,231,255,.1), transparent 32%), linear-gradient(145deg, rgba(19,21,29,.76), rgba(8,9,13,.94)); }
.motion-stage { position: absolute; right: 8%; bottom: 5%; width: 56%; aspect-ratio: 1.1; display: grid; place-items: center; }
.motion-ring { position: absolute; width: 92%; aspect-ratio: 1; border: 1px solid rgba(120,231,255,.27); border-radius: 50%; animation: motionSpin 13s linear infinite; }
.motion-ring::before, .motion-ring::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.motion-ring::before { inset: 13%; }
.motion-ring::after { inset: 29%; }
.motion-disc { width: 42%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 200deg, #13151c, var(--violet), var(--cyan), #13151c); filter: saturate(.8); box-shadow: 0 0 70px rgba(120,231,255,.2); animation: discFloat 5s ease-in-out infinite; }
.motion-label { position: absolute; padding: 8px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(9,10,14,.74); color: #aeb0b8; font: 8px var(--mono); letter-spacing: .12em; }
.label-a { left: 0; top: 18%; }
.label-b { right: 0; bottom: 15%; color: var(--acid); }
@keyframes motionSpin { to { transform: rotate(360deg); } }
@keyframes discFloat { 50% { transform: scale(.87) rotate(15deg); border-radius: 38%; } }
.agent-mini { position: absolute; right: 28px; bottom: 28px; width: 62%; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(5,6,9,.48); }
.agent-line { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 10px; }
.agent-line span { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 22px; border-radius: 50%; color: #08090d; background: var(--acid); font: 9px var(--mono); }
.agent-line p { margin: 0; padding: 10px 12px; border-radius: 12px 12px 12px 3px; color: #c6c7ce; background: rgba(255,255,255,.08); font-size: 10px; }
.agent-line.user { justify-content: flex-end; }
.agent-line.user p { border-radius: 12px 12px 3px 12px; color: #0c0d11; background: #ecebe8; }
.agent-tag-row { display: flex; gap: 6px; margin-top: 18px; flex-wrap: wrap; }
.agent-tag-row span { padding: 6px 8px; border-radius: 999px; border: 1px solid rgba(216,255,101,.22); color: var(--acid); font: 7px var(--mono); letter-spacing: .08em; }
.automation-flow { position: absolute; right: 35px; bottom: 62px; left: 35px; display: flex; align-items: center; justify-content: space-between; }
.flow-node { position: relative; z-index: 2; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(12,13,18,.78); color: #9b9da5; font: 10px var(--mono); letter-spacing: .1em; }
.flow-node.primary { color: #08090d; background: var(--acid); border-color: var(--acid); box-shadow: 0 0 55px rgba(216,255,101,.18); }
.automation-flow > span { color: #5d6069; }
.flow-pulse { position: absolute; left: 9%; right: 9%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(216,255,101,.55), transparent); animation: flowPulse 2.6s ease-in-out infinite; }
@keyframes flowPulse { 0%,100% { transform: scaleX(.15); opacity: .2; } 50% { transform: scaleX(1); opacity: 1; } }

.experience { display: grid; grid-template-columns: .78fr 1.25fr; gap: clamp(60px, 8vw, 130px); align-items: start; border-top: 1px solid var(--line); }
.experience-sticky { position: sticky; top: 130px; }
.experience-sticky h2 { max-width: 570px; margin: 20px 0 24px; font-size: clamp(48px, 5vw, 76px); font-weight: 500; line-height: .98; letter-spacing: -0.06em; }
.experience-sticky p { max-width: 510px; margin: 0 0 28px; color: var(--muted); line-height: 1.7; }
.experience-scenes { display: grid; gap: 22px; }
.scene-card { position: relative; min-height: 610px; display: grid; grid-template-rows: 1fr auto; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,15,20,.76); }
.scene-number { position: absolute; top: 24px; left: 24px; z-index: 2; color: var(--acid); font: 10px var(--mono); }
.scene-visual { position: relative; min-height: 430px; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: radial-gradient(circle at 50% 45%, rgba(168,140,255,.12), rgba(5,6,9,.65) 58%); }
.scene-card > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; padding: 26px 4px 4px; }
.scene-card h3 { margin: 0; font-size: 27px; font-weight: 500; letter-spacing: -.04em; }
.scene-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.scene-depth { perspective: 850px; }
.depth-plane { position: absolute; width: 52%; height: 45%; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(168,140,255,.08)); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.plane-one { transform: translate(-19%, 11%) rotateY(48deg) rotateX(9deg); }
.plane-two { transform: translate(0, 0) rotateY(48deg) rotateX(9deg); animation: planeMove 5s ease-in-out infinite; }
.plane-three { transform: translate(19%, -11%) rotateY(48deg) rotateX(9deg); }
@keyframes planeMove { 50% { transform: translate(8%, -7%) rotateY(37deg) rotateX(4deg); } }
.scene-type { align-content: center; }
.scene-type span { display: block; font-size: clamp(48px, 7vw, 100px); font-weight: 600; line-height: .83; letter-spacing: -.08em; }
.scene-type span:nth-child(1) { color: #484a53; transform: translateX(-14%); }
.scene-type span:nth-child(2) { color: var(--violet); transform: translateX(8%); }
.scene-type span:nth-child(3) { color: transparent; -webkit-text-stroke: 1px #c9c9cf; transform: translateX(-3%); }
.scene-data { grid-template-columns: 1fr 1fr; padding: 10%; }
.data-ring { width: 190px; height: 190px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: conic-gradient(var(--acid) 0 78%, rgba(255,255,255,.07) 78%); box-shadow: inset 0 0 0 18px #0a0b10; }
.data-ring b { font-size: 56px; line-height: .9; }
.data-ring small { color: #8e9099; font: 8px var(--mono); letter-spacing: .14em; }
.data-bars { height: 200px; display: flex; align-items: end; gap: 13px; }
.data-bars i { width: 18px; height: var(--h, 50%); border-radius: 999px; background: linear-gradient(180deg, var(--violet), rgba(168,140,255,.08)); animation: bars 3s ease-in-out infinite alternate; }
.data-bars i:nth-child(1) { --h: 34%; animation-delay: -.4s; }
.data-bars i:nth-child(2) { --h: 62%; animation-delay: -.9s; }
.data-bars i:nth-child(3) { --h: 82%; animation-delay: -1.3s; }
.data-bars i:nth-child(4) { --h: 49%; animation-delay: -.1s; }
.data-bars i:nth-child(5) { --h: 71%; animation-delay: -.7s; }
@keyframes bars { to { height: calc(var(--h) * .62); } }

.work { border-top: 1px solid var(--line); }
.project-list { display: grid; gap: 90px; }
.project-card { position: relative; }
.project-meta { display: grid; grid-template-columns: 1fr 1fr auto; margin-bottom: 14px; color: #777984; font: 9px var(--mono); letter-spacing: .1em; }
.project-canvas { padding: clamp(12px, 2vw, 28px); border: 1px solid var(--line); border-radius: 28px; background: #0c0e13; overflow: hidden; }
.project-window { position: relative; min-height: 660px; overflow: hidden; border-radius: 18px; background: #0d0f16; }
.window-nav { position: relative; z-index: 2; display: flex; align-items: center; gap: 6px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.09); color: #c9cad0; font: 8px var(--mono); letter-spacing: .13em; }
.window-nav i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); }
.window-nav span { margin-left: 12px; }
.aether-copy { position: relative; z-index: 3; padding: 115px 8%; }
.aether-copy small { color: var(--cyan); font: 9px var(--mono); letter-spacing: .18em; }
.aether-copy strong { display: block; max-width: 690px; margin-top: 20px; font-size: clamp(54px, 8vw, 116px); font-weight: 500; line-height: .88; letter-spacing: -.07em; }
.aether-copy button { margin-top: 38px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d8d9df; background: rgba(255,255,255,.05); font-size: 11px; }
.aether-orb { position: absolute; right: -3%; top: 14%; width: 47%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 32% 25%, #e7faff, #78e7ff 9%, #a88cff 24%, #141622 58%, #08090d 72%); box-shadow: 0 0 120px rgba(168,140,255,.24); animation: projectOrb 8s ease-in-out infinite; }
.aether-orb::before, .aether-orb::after { content: ""; position: absolute; inset: -10%; border: 1px solid rgba(120,231,255,.2); border-radius: 50%; transform: rotateX(70deg) rotateZ(25deg); }
.aether-orb::after { inset: 12%; border-color: rgba(255,255,255,.13); transform: rotateY(70deg) rotateZ(-20deg); }
.aether-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 70% 50%, black, transparent 60%); }
@keyframes projectOrb { 50% { transform: translateY(-18px) scale(.96) rotate(7deg); } }
.project-footer { display: grid; grid-template-columns: .7fr 1.2fr auto; gap: 30px; align-items: center; padding: 22px 4px 0; }
.project-footer h3 { margin: 0; font-size: 27px; font-weight: 500; letter-spacing: -.04em; }
.project-footer p { margin: 0; color: var(--muted); font-size: 12px; }
.project-footer > span { color: #c4c5cc; font-size: 11px; }
.light-window { background: #eee9df; color: #161716; }
.northstar-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(20,20,20,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(20,20,20,.07) 1px, transparent 1px); background-size: 11.11% 100%, 100% 25%; }
.northstar-top { position: relative; z-index: 2; display: flex; justify-content: space-between; padding: 26px 30px; border-bottom: 1px solid rgba(20,20,20,.17); font: 10px var(--mono); letter-spacing: .13em; }
.northstar-copy { position: relative; z-index: 2; padding: 145px 8%; }
.northstar-copy strong { display: block; font-family: Georgia, serif; font-size: clamp(58px, 8vw, 122px); font-weight: 400; line-height: .88; letter-spacing: -.065em; }
.northstar-copy p { margin-top: 30px; font-size: 15px; }
.northstar-line { position: absolute; right: 9%; top: 24%; width: 1px; height: 58%; background: #151615; }
.northstar-line::before, .northstar-line::after { content: ""; position: absolute; left: 50%; width: 13px; height: 13px; border-radius: 50%; border: 1px solid #151615; transform: translateX(-50%); background: #eee9df; }
.northstar-line::before { top: 18%; }
.northstar-line::after { bottom: 8%; background: #151615; }
.arc-window { color: #1c2624; background: linear-gradient(135deg, #c6e9db, #c5dff4 54%, #e2cfea); }
.arc-nav { position: relative; z-index: 2; display: flex; justify-content: space-between; padding: 24px 30px; color: rgba(20,35,31,.7); font: 9px var(--mono); letter-spacing: .13em; }
.arc-copy { position: relative; z-index: 3; padding: 130px 8%; }
.arc-copy small { font: 9px var(--mono); letter-spacing: .16em; }
.arc-copy strong { display: block; margin-top: 22px; font-size: clamp(58px, 8vw, 120px); font-weight: 500; line-height: .88; letter-spacing: -.07em; }
.arc-rings { position: absolute; right: 5%; top: 19%; width: 45%; aspect-ratio: 1; display: grid; place-items: center; }
.arc-rings i { position: absolute; border: 1px solid rgba(22,45,39,.24); border-radius: 50%; }
.arc-rings i:nth-child(1) { inset: 0; }
.arc-rings i:nth-child(2) { inset: 15%; }
.arc-rings i:nth-child(3) { inset: 31%; }
.arc-rings b { width: 24%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 34% 26%, #fff, #95b6ad 35%, #2f5249 72%); box-shadow: 0 24px 50px rgba(31,61,54,.23); animation: coreFloat 6s ease-in-out infinite; }

.agent-showcase { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 8vw, 120px); align-items: center; border-top: 1px solid var(--line); }
.agent-showcase-copy h2 { max-width: 650px; margin: 20px 0 24px; font-size: clamp(48px, 5.3vw, 80px); font-weight: 500; line-height: .98; letter-spacing: -.06em; }
.agent-showcase-copy > p { max-width: 580px; color: var(--muted); line-height: 1.7; }
.agent-showcase-copy ul { list-style: none; display: grid; gap: 12px; padding: 0; margin: 28px 0 32px; }
.agent-showcase-copy li { display: grid; grid-template-columns: 33px 1fr; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: #c0c1c8; font-size: 13px; }
.agent-showcase-copy li span { color: var(--acid); font: 9px var(--mono); }
.agent-console { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: linear-gradient(145deg, rgba(18,20,27,.94), rgba(8,9,13,.95)); box-shadow: 0 35px 100px rgba(0,0,0,.36); }
.console-top, .console-footer { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; color: #777a84; font: 8px var(--mono); letter-spacing: .11em; }
.console-top { border-bottom: 1px solid var(--line); }
.console-top span:first-child { display: flex; align-items: center; gap: 8px; color: #b9bac1; }
.console-top i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }
.console-body { min-height: 510px; padding: 42px; }
.console-message { display: flex; gap: 11px; margin-bottom: 18px; }
.console-message > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 50%; color: #08090d; background: var(--acid); font: 10px var(--mono); }
.console-message p { max-width: 78%; margin: 0; padding: 13px 15px; border-radius: 15px 15px 15px 4px; color: #d6d6dc; background: rgba(255,255,255,.075); font-size: 12px; line-height: 1.5; }
.console-message.user { justify-content: flex-end; }
.console-message.user p { color: #101116; background: #efeeea; border-radius: 15px 15px 4px 15px; }
.console-thinking { display: flex; align-items: center; gap: 5px; margin: 25px 0 26px; color: #767984; font: 8px var(--mono); letter-spacing: .08em; }
.console-thinking i { width: 4px; height: 4px; border-radius: 50%; background: var(--violet); animation: typing 1.2s infinite ease-in-out; }
.console-thinking i:nth-child(2) { animation-delay: .15s; }
.console-thinking i:nth-child(3) { animation-delay: .3s; }
.console-thinking span { margin-left: 7px; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-5px); opacity: 1; } }
.console-insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.console-insights div { min-height: 105px; padding: 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.console-insights small { display: block; color: #686b75; font: 7px var(--mono); letter-spacing: .1em; }
.console-insights strong { display: block; margin-top: 28px; color: #d5d5da; font-size: 12px; font-weight: 500; }
.console-route { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 12px; align-items: center; margin-top: 14px; padding: 15px; border: 1px solid rgba(216,255,101,.16); border-radius: 13px; background: rgba(216,255,101,.035); }
.console-route span { color: var(--acid); font: 7px var(--mono); }
.console-route b { font-size: 10px; font-weight: 500; }
.console-route i { color: #777984; font-style: normal; }
.console-footer { border-top: 1px solid var(--line); justify-content: flex-start; }
.console-footer span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; }

.services { border-top: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { position: relative; min-height: 650px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(18,20,27,.76), rgba(9,10,14,.9)); }
.price-card.featured { border-color: rgba(216,255,101,.35); background: radial-gradient(circle at 82% 8%, rgba(216,255,101,.09), transparent 28%), linear-gradient(145deg, rgba(22,24,29,.88), rgba(9,10,14,.94)); }
.popular-tag { position: absolute; right: 21px; top: 21px; padding: 7px 9px; border-radius: 999px; color: #08090d; background: var(--acid); font: 7px var(--mono); letter-spacing: .1em; }
.price-label { color: #747680; font: 9px var(--mono); letter-spacing: .1em; }
.price-card h3 { margin: 60px 0 15px; font-size: 34px; font-weight: 500; letter-spacing: -.045em; }
.price-card > p { min-height: 68px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.price { display: flex; align-items: flex-end; gap: 12px; margin: 38px 0 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.price small { margin-bottom: 10px; color: #757781; font: 8px var(--mono); }
.price strong { font-size: 52px; font-weight: 500; letter-spacing: -.06em; }
.price-card ul { list-style: none; display: grid; gap: 14px; padding: 0; margin: 0 0 34px; }
.price-card li { position: relative; padding-left: 19px; color: #b7b8c0; font-size: 12px; }
.price-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border: 1px solid var(--acid); border-radius: 50%; }
.price-card .button { width: 100%; margin-top: auto; }
.pricing-note { margin: 22px 0 0; color: #71737d; font: 9px var(--mono); line-height: 1.7; letter-spacing: .06em; }

.process { border-top: 1px solid var(--line); }
.process-intro { display: grid; grid-template-columns: .6fr 1.4fr; gap: 70px; margin-bottom: 65px; }
.process-intro h2 { max-width: 970px; margin: 0; font-size: clamp(46px, 5.4vw, 82px); font-weight: 500; line-height: .98; letter-spacing: -.06em; }
.process-list { border-top: 1px solid var(--line); }
.process-row { display: grid; grid-template-columns: .25fr .7fr 1.5fr auto; gap: 30px; align-items: center; min-height: 132px; border-bottom: 1px solid var(--line); transition: padding .3s ease, background .3s ease; }
.process-row:hover { padding: 0 18px; background: rgba(255,255,255,.025); }
.process-row > span { color: var(--acid); font: 9px var(--mono); }
.process-row h3 { margin: 0; font-size: 27px; font-weight: 500; letter-spacing: -.04em; }
.process-row p { max-width: 580px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.process-row i { color: #777984; font: 9px var(--mono); font-style: normal; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 150px); border-top: 1px solid var(--line); }
.faq-title h2 { margin: 20px 0 0; font-size: clamp(48px, 5vw, 76px); font-weight: 500; line-height: .98; letter-spacing: -.06em; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; min-height: 92px; cursor: pointer; list-style: none; font-size: 15px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: #8f919a; transition: transform .3s ease; }
.faq details[open] summary span { transform: rotate(45deg); color: var(--acid); }
.faq details p { max-width: 700px; margin: -2px 0 30px; padding-right: 50px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.final-cta { position: relative; min-height: 740px; display: grid; place-items: center; align-content: center; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.final-cta h2 { position: relative; z-index: 2; margin: 26px 0 25px; font-size: clamp(62px, 9vw, 136px); font-weight: 500; line-height: .86; letter-spacing: -.075em; }
.final-cta > p { position: relative; z-index: 2; max-width: 620px; margin: 0 0 32px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.final-cta .button { position: relative; z-index: 2; }
.cta-orb { position: absolute; left: 50%; top: 48%; width: min(60vw, 840px); aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle at 42% 36%, rgba(255,255,255,.16), rgba(168,140,255,.14) 18%, rgba(120,231,255,.08) 36%, transparent 65%); filter: blur(4px); }
.cta-orb::before, .cta-orb::after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; animation: ctaSpin 25s linear infinite; }
.cta-orb::after { inset: 22%; border-color: rgba(216,255,101,.12); animation-direction: reverse; animation-duration: 18s; }
@keyframes ctaSpin { to { transform: rotate(360deg) scale(.94); } }
.cta-meta { position: relative; z-index: 2; display: flex; gap: 9px; margin-top: 22px; }
.cta-meta span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; color: #777984; font: 7px var(--mono); letter-spacing: .1em; }

.site-footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 70px 0 24px; }
.footer-brand { display: grid; grid-template-columns: auto auto 1fr; gap: 12px; align-items: center; }
.footer-brand strong { letter-spacing: .13em; font-size: 14px; }
.footer-brand p { justify-self: end; margin: 0; color: #72747e; font-size: 11px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 180px); justify-content: end; gap: 34px; margin: 70px 0; }
.footer-links div { display: grid; gap: 10px; }
.footer-links small { margin-bottom: 5px; color: #666872; font: 8px var(--mono); letter-spacing: .12em; }
.footer-links a { color: #b6b7be; font-size: 12px; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: #666872; font: 8px var(--mono); letter-spacing: .09em; }

.agent-fab { position: fixed; right: 22px; bottom: 20px; z-index: 80; display: flex; align-items: center; gap: 12px; min-width: 245px; min-height: 62px; padding: 8px 12px 8px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: var(--text); background: rgba(13,15,20,.78); backdrop-filter: blur(18px); box-shadow: 0 18px 60px rgba(0,0,0,.35); cursor: pointer; transition: transform .25s ease, border-color .25s ease; }
.agent-fab:hover { transform: translateY(-4px); border-color: rgba(216,255,101,.38); }
.fab-orb { position: relative; width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 43px; border-radius: 50%; background: radial-gradient(circle at 30% 26%, #fff, var(--violet) 24%, #171923 70%); box-shadow: 0 0 24px rgba(168,140,255,.23); }
.fab-orb i { width: 13px; height: 13px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; animation: fabPulse 2.3s ease-in-out infinite; }
@keyframes fabPulse { 50% { transform: scale(1.65); opacity: .25; } }
.agent-fab > span:nth-child(2) { display: grid; gap: 3px; text-align: left; }
.agent-fab small { color: var(--acid); font: 7px var(--mono); letter-spacing: .1em; }
.agent-fab strong { font-size: 11px; font-weight: 500; }
.agent-fab > b { margin-left: auto; font-size: 15px; font-weight: 400; }

.agent-backdrop { position: fixed; inset: 0; z-index: 190; background: rgba(3,4,6,.68); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.agent-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: min(100%, 520px); display: grid; grid-template-rows: auto auto auto 1fr auto auto; border-left: 1px solid rgba(255,255,255,.14); background: #0b0c11; transform: translateX(100%); visibility: hidden; transition: transform .5s cubic-bezier(.2,.8,.2,1), visibility .5s; }
.agent-open .agent-backdrop { opacity: 1; visibility: visible; }
.agent-open .agent-panel { transform: translateX(0); visibility: visible; }
.agent-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.agent-panel-head > div:first-child { display: flex; align-items: center; gap: 11px; }
.agent-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #090a0e; background: var(--acid); font: 12px var(--mono); box-shadow: 0 0 25px rgba(216,255,101,.16); }
.agent-panel-head p { display: grid; gap: 2px; margin: 0; }
.agent-panel-head strong { font-size: 11px; letter-spacing: .12em; }
.agent-panel-head small { color: #777983; font: 7px var(--mono); letter-spacing: .12em; }
.agent-head-actions { display: flex; align-items: center; gap: 12px; }
.agent-status { display: flex; align-items: center; gap: 8px; color: #8b8d96; font: 7px var(--mono); letter-spacing: .1em; }
.agent-status i { width: 5px; height: 5px; }
.agent-head-actions button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: #b4b5bc; background: transparent; font-size: 22px; line-height: 1; cursor: pointer; }
.agent-disclosure { display: flex; gap: 10px; padding: 11px 20px; border-bottom: 1px solid rgba(255,255,255,.06); color: #82848e; background: rgba(255,255,255,.022); font-size: 9px; line-height: 1.5; }
.agent-disclosure span { align-self: flex-start; padding: 3px 5px; border-radius: 4px; color: #090a0e; background: var(--acid); font: 7px var(--mono); }
.agent-progress { height: 2px; background: rgba(255,255,255,.06); }
.agent-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan), var(--acid)); transition: width .45s ease; }
.agent-messages { overflow-y: auto; padding: 28px 20px 20px; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #2a2d36 transparent; }
.agent-message { display: flex; align-items: flex-end; gap: 9px; margin-bottom: 16px; animation: messageIn .45s cubic-bezier(.2,.8,.2,1) both; }
@keyframes messageIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.agent-message .msg-avatar { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 25px; border-radius: 50%; color: #090a0e; background: var(--acid); font: 8px var(--mono); }
.agent-message p { max-width: 84%; margin: 0; padding: 12px 14px; border-radius: 15px 15px 15px 4px; color: #d5d6dc; background: #171920; font-size: 12px; line-height: 1.55; }
.agent-message.user { justify-content: flex-end; }
.agent-message.user p { color: #121318; background: #eeedea; border-radius: 15px 15px 4px 15px; }
.agent-message.system p { max-width: 100%; width: 100%; border: 1px solid rgba(216,255,101,.16); border-radius: 14px; color: #b8bac2; background: rgba(216,255,101,.035); }
.agent-typing { display: flex; align-items: center; gap: 5px; margin: 5px 0 15px 34px; }
.agent-typing i { width: 5px; height: 5px; border-radius: 50%; background: #8e9099; animation: typing 1.2s infinite; }
.agent-typing i:nth-child(2) { animation-delay: .15s; }
.agent-typing i:nth-child(3) { animation-delay: .3s; }
.agent-response { min-height: 82px; padding: 14px 20px 18px; border-top: 1px solid var(--line); background: #0d0e13; }
.agent-options { display: flex; flex-wrap: wrap; gap: 8px; }
.agent-option { min-height: 38px; padding: 0 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #c7c8cf; background: rgba(255,255,255,.035); font-size: 10px; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.agent-option:hover, .agent-option.selected { color: #0b0c10; border-color: var(--acid); background: var(--acid); }
.agent-input-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.agent-input-row input, .agent-input-row textarea { width: 100%; min-height: 46px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; outline: none; color: var(--text); background: rgba(255,255,255,.035); font-size: 12px; resize: none; }
.agent-input-row textarea { min-height: 82px; }
.agent-input-row input:focus, .agent-input-row textarea:focus { border-color: rgba(216,255,101,.5); box-shadow: 0 0 0 3px rgba(216,255,101,.05); }
.agent-send { width: 46px; height: 46px; display: grid; place-items: center; align-self: end; border: 0; border-radius: 50%; color: #08090d; background: var(--acid); cursor: pointer; }
.agent-multi-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 12px; }
.agent-multi-actions span { color: #71737c; font-size: 9px; }
.agent-multi-actions button { min-height: 37px; padding: 0 14px; border: 0; border-radius: 999px; color: #08090d; background: var(--acid); font-size: 10px; cursor: pointer; }
.agent-consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 10px; color: #767984; font-size: 9px; line-height: 1.5; }
.agent-consent input { margin-top: 2px; accent-color: var(--acid); }
.agent-result { padding: 3px 0; }
.result-card { overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.035); }
.result-head { display: flex; justify-content: space-between; gap: 18px; padding: 15px; border-bottom: 1px solid var(--line); }
.result-head span { color: #777984; font: 8px var(--mono); letter-spacing: .1em; }
.result-head strong { color: var(--acid); font-size: 11px; font-weight: 500; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; }
.result-grid div { min-height: 75px; padding: 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.result-grid div:nth-child(2n) { border-right: 0; }
.result-grid small { display: block; color: #6f717a; font: 7px var(--mono); letter-spacing: .08em; }
.result-grid b { display: block; margin-top: 12px; color: #d5d6dc; font-size: 11px; font-weight: 500; }
.result-summary { padding: 14px; color: #aeb0b8; font-size: 10px; line-height: 1.6; }
.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.result-actions button, .result-actions a { min-height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #c8c9cf; background: transparent; font-size: 9px; cursor: pointer; }
.result-actions .primary { color: #08090d; border-color: var(--acid); background: var(--acid); }
.agent-panel-foot { display: flex; justify-content: space-between; align-items: center; padding: 11px 20px; border-top: 1px solid rgba(255,255,255,.06); color: #666872; font: 7px var(--mono); letter-spacing: .08em; }
.agent-panel-foot button { border: 0; color: #777984; background: transparent; font: inherit; cursor: pointer; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 300; padding: 11px 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #d7d7dc; background: rgba(13,15,20,.92); backdrop-filter: blur(14px); font-size: 10px; transform: translate(-50%, 20px); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (max-width: 1180px) {
  .desktop-nav, .availability { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { min-height: 600px; }
  .hero-orbit { width: min(70vw, 510px); }
  .manifesto { grid-template-columns: .5fr 2fr; }
  .manifesto-note { grid-column: 2; padding-top: 0; }
  .experience, .agent-showcase { grid-template-columns: 1fr; }
  .experience-sticky { position: static; }
  .experience-sticky p { max-width: 700px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card > p { min-height: 0; }
  .price-card .button { margin-top: 25px; }
  .project-window { min-height: 580px; }
}

@media (max-width: 820px) {
  :root { --radius: 21px; }
  .site-header { left: 12px; right: 12px; top: 10px; height: 58px; padding-left: 14px; }
  .brand { font-size: 11px; }
  .nav-actions .button { display: none; }
  .section-pad, .hero, .site-footer { width: min(calc(100% - 30px), var(--max)); }
  .section-pad { padding: 96px 0; }
  .hero { min-height: auto; padding: 126px 0 56px; gap: 25px; }
  .eyebrow { flex-direction: column; gap: 7px; margin-bottom: 27px; }
  .hero h1 { font-size: clamp(59px, 18vw, 92px); }
  .hero-lede { margin-top: 27px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-meta { grid-template-columns: 1fr; gap: 10px; margin-top: 40px; }
  .hero-visual { min-height: 520px; }
  .hero-orbit { top: 48%; width: min(95vw, 450px); }
  .core-sphere { width: 130px; height: 130px; }
  .core-sphere span { font-size: 36px; }
  .telemetry-card { right: -2%; top: 2%; width: 218px; }
  .micro-chat { left: -1%; bottom: 2%; width: 242px; }
  .hero-caption { display: none; }
  .manifesto, .section-heading, .process-intro, .faq { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-note { grid-column: auto; }
  .manifesto-copy h2, .section-heading h2, .experience-sticky h2, .agent-showcase-copy h2, .process-intro h2, .faq-title h2 { font-size: clamp(45px, 13.5vw, 69px); }
  .section-heading { margin-bottom: 42px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 500px; padding: 23px; }
  .capability-card h3 { margin-top: 50px; }
  .mini-wireframe, .agent-mini { width: calc(100% - 46px); right: 23px; }
  .motion-stage { width: 75%; right: -2%; }
  .automation-flow { left: 22px; right: 22px; }
  .flow-node { width: 70px; height: 70px; border-radius: 18px; }
  .scene-card { min-height: 530px; }
  .scene-visual { min-height: 360px; }
  .scene-card > div:last-child { grid-template-columns: 1fr; gap: 12px; }
  .scene-data { grid-template-columns: 1fr; gap: 15px; }
  .data-ring { width: 145px; height: 145px; }
  .data-bars { height: 100px; }
  .project-list { gap: 58px; }
  .project-meta { grid-template-columns: 1fr auto; gap: 10px; }
  .project-meta span:nth-child(2) { display: none; }
  .project-window { min-height: 450px; }
  .aether-copy, .northstar-copy, .arc-copy { padding: 105px 7%; }
  .aether-copy strong, .northstar-copy strong, .arc-copy strong { font-size: clamp(48px, 13.5vw, 80px); }
  .aether-orb, .arc-rings { opacity: .6; width: 62%; }
  .project-footer { grid-template-columns: 1fr; gap: 8px; }
  .project-footer > span { margin-top: 4px; }
  .console-body { min-height: 460px; padding: 24px; }
  .console-insights { grid-template-columns: 1fr; }
  .console-insights div { min-height: 73px; }
  .console-insights strong { margin-top: 15px; }
  .process-row { grid-template-columns: 34px 1fr auto; gap: 16px; padding: 23px 0; }
  .process-row p { grid-column: 2 / 4; }
  .process-row:hover { padding: 23px 0; }
  .faq details p { padding-right: 0; }
  .final-cta { min-height: 640px; }
  .final-cta h2 { font-size: clamp(58px, 17vw, 92px); }
  .cta-meta { flex-wrap: wrap; justify-content: center; }
  .footer-brand { grid-template-columns: auto 1fr; }
  .footer-brand p { grid-column: 1 / -1; justify-self: start; }
  .footer-links { justify-content: start; grid-template-columns: repeat(2, minmax(0,1fr)); margin: 50px 0; }
  .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
  .agent-fab { right: 13px; bottom: 12px; min-width: auto; width: 58px; height: 58px; padding: 7px; }
  .agent-fab > span:nth-child(2), .agent-fab > b { display: none; }
  .fab-orb { width: 43px; height: 43px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(54px, 17.3vw, 76px); }
  .hero-visual { min-height: 470px; }
  .telemetry-card { width: 200px; transform: rotate(1deg) scale(.92); transform-origin: top right; }
  .micro-chat { width: 220px; transform: rotate(-1.5deg) scale(.9); transform-origin: bottom left; }
  .capability-card { min-height: 470px; }
  .mini-wireframe { min-width: 0; }
  .flow-node { width: 60px; height: 60px; font-size: 8px; }
  .scene-type span { font-size: 54px; }
  .project-canvas { padding: 8px; border-radius: 20px; }
  .project-window { min-height: 410px; border-radius: 14px; }
  .aether-orb { right: -20%; top: 25%; width: 80%; }
  .arc-rings { right: -20%; top: 30%; width: 78%; }
  .northstar-line { display: none; }
  .price-card { padding: 24px; }
  .price-card h3 { margin-top: 50px; }
  .price strong { font-size: 46px; }
  .agent-panel { width: 100%; }
  .agent-disclosure { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  #ambientCanvas, .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
}
