:root {
  color-scheme: dark;
  --bg: #080b10;
  --bg-soft: #0d1117;
  --surface: #121821;
  --surface-hover: #18202b;
  --line: #24303d;
  --line-bright: #344557;
  --ink: #f3f6fa;
  --muted: #a7b0bd;
  --dim: #697586;
  --brand: #35c8f5;
  --brand-strong: #18aee0;
  --brand-soft: rgba(53, 200, 245, 0.12);
  --positive: #22c55e;
  --negative: #ef4444;
  --warning: #f59e0b;
  --paper: #eef3f8;
  --paper-ink: #10213a;
  --max: 1240px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: linear-gradient(rgba(53, 200, 245, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 200, 245, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.055em; line-height: 1.02; }
em { color: var(--brand); font-style: normal; }
::selection { color: #031018; background: var(--brand); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 12px;
  color: #031018;
  background: var(--brand);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.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; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(36, 48, 61, 0.86);
  background: rgba(8, 11, 16, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 34px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; color: var(--ink); font-size: 20px; font-weight: 650; letter-spacing: -0.045em; }
.brand-accent, .brand b { color: var(--brand); font-weight: 750; }
.brand-mark { display: inline-flex; align-items: end; gap: 3px; height: 20px; }
.brand-mark i { display: block; width: 5px; border-radius: 3px; background: var(--brand); }
.brand-mark i:nth-child(1) { height: 9px; }
.brand-mark i:nth-child(2) { height: 19px; }
.brand-mark i:nth-child(3) { height: 14px; }
.nav-status { display: inline-flex; align-items: center; gap: 7px; margin-left: 13px; color: var(--dim); font: 10px/1.1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-status > span, .live-dot, .ai-panel-head b i { width: 6px; height: 6px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 11px rgba(34, 197, 94, 0.8); }
.site-header nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.site-header nav a { color: var(--muted); font-size: 13px; transition: color 160ms ease; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--brand); }
.menu-toggle { display: none; color: var(--ink); border: 1px solid var(--line); border-radius: 7px; padding: 7px 10px; background: transparent; cursor: pointer; line-height: 1; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 6px; font-size: 13px; font-weight: 750; letter-spacing: 0.01em; transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .menu-toggle:focus-visible, .site-footer a:focus-visible, .faq summary:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }
.button-primary { color: #031018; background: var(--brand); }
.button-primary:hover { background: #63d7f7; }
.button-small { min-height: 38px; padding: 0 14px; font-size: 12px; }
.button-quiet { color: var(--ink); border-color: var(--line-bright); background: rgba(18, 24, 33, 0.55); }
.button-quiet:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

.hero { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr); align-items: center; gap: 58px; max-width: 1400px; min-height: 690px; margin: 0 auto; padding: 82px 50px 88px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--brand); font: 800 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.16em; }
.eyebrow > span { display: block; width: 23px; height: 1px; background: currentColor; }
.hero h1 { max-width: 610px; margin: 0 0 27px; font-size: clamp(55px, 6vw, 88px); font-weight: 750; }
.hero-lede { max-width: 545px; margin-bottom: 30px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 530px; margin-top: 49px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 8px; padding: 15px 14px 0 0; border-right: 1px solid var(--line); }
.hero-proof div + div { padding-left: 14px; }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { color: var(--brand); font: 750 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.hero-proof span { color: var(--dim); font-size: 11px; line-height: 1.35; }

.product-stage { position: relative; min-height: 600px; padding-top: 22px; }
.stage-glow { position: absolute; z-index: -1; top: 85px; right: -4%; width: 78%; height: 68%; border-radius: 50%; background: radial-gradient(circle, rgba(53, 200, 245, 0.2), transparent 65%); filter: blur(18px); }
.stage-label { display: flex; align-items: center; gap: 8px; color: var(--dim); font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.11em; }
.stage-label b { margin-left: auto; color: var(--brand); font-weight: 700; }
.chart-window { position: absolute; top: 58px; right: 4px; left: 0; height: 367px; overflow: hidden; border: 1px solid var(--line-bright); border-radius: 10px; background: #0c131e; box-shadow: 24px 28px 0 rgba(17, 34, 54, 0.55), 0 24px 80px rgba(0, 0, 0, 0.35); transform: rotate(-1.1deg); }
.chart-window-bar { display: flex; align-items: center; gap: 11px; height: 39px; padding: 0 14px; border-bottom: 1px solid var(--line); color: var(--dim); font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.chart-window-bar b { margin-left: auto; color: var(--ink); font-weight: 700; }
.window-dots { display: inline-flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #445468; }
.window-dots i:first-child { background: var(--negative); }
.chart-toolbar { display: flex; align-items: center; gap: 12px; height: 36px; padding: 0 14px; border-bottom: 1px solid rgba(36, 48, 61, 0.68); color: #74849a; font: 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.chart-toolbar span:first-child, .chart-toolbar span:nth-child(3) { color: var(--brand); }
.toolbar-spacer { flex: 1; }
.chart-canvas { position: relative; height: 258px; overflow: hidden; }
.chart-grid { position: absolute; inset: 0; opacity: 0.72; background-image: linear-gradient(rgba(167, 176, 189, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(167, 176, 189, 0.08) 1px, transparent 1px); background-size: 100% 43px, 63px 100%; }
.chart-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart-canvas path { fill: none; stroke: var(--brand); stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart-canvas path.chart-ema { stroke: rgba(245, 158, 11, 0.86); stroke-width: 2; }
.chart-level { position: absolute; z-index: 1; right: 0; left: 0; border-top: 1px dashed rgba(53, 200, 245, 0.46); }
.chart-level span { position: absolute; right: 10px; top: -16px; padding: 3px 5px; color: var(--brand); background: rgba(8, 11, 16, 0.82); font: 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.level-one { top: 63%; }
.level-two { top: 26%; border-color: rgba(245, 158, 11, 0.55); }
.level-two span { color: var(--warning); }
.market-candle { position: absolute; z-index: 2; width: 8px; height: 36px; border-radius: 1px; background: var(--positive); }
.market-candle::before, .market-candle::after { position: absolute; left: 3px; width: 2px; content: ""; background: inherit; }
.market-candle::before { bottom: 100%; height: 15px; }
.market-candle::after { top: 100%; height: 11px; }
.market-candle.down { background: var(--negative); }
.candle-one { top: 59%; left: 11%; height: 29px; }.candle-two { top: 64%; left: 19%; height: 41px; }.candle-three { top: 48%; left: 27%; height: 51px; }.candle-four { top: 40%; left: 35%; height: 29px; }.candle-five { top: 50%; left: 43%; height: 38px; }.candle-six { top: 33%; left: 51%; height: 52px; }.candle-seven { top: 23%; left: 59%; height: 34px; }.candle-eight { top: 34%; left: 67%; height: 38px; }.candle-nine { top: 20%; left: 75%; height: 46px; }.candle-ten { top: 16%; left: 83%; height: 28px; }.candle-eleven { top: 9%; left: 91%; height: 35px; }
.chart-marker { position: absolute; z-index: 3; display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid var(--brand); border-radius: 50%; color: #031018; background: var(--brand); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.marker-a { top: 34%; left: 52%; }.marker-p { top: 22%; left: 76%; color: #111; background: var(--warning); border-color: var(--warning); }
.chart-footer { display: flex; justify-content: space-between; padding: 8px 14px; color: #5d6d81; font: 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.extension-panel { position: absolute; z-index: 4; right: 0; bottom: 34px; width: 306px; overflow: hidden; border: 1px solid #3b4a5e; border-radius: 9px; background: #20242b; box-shadow: 17px 20px 0 rgba(6, 10, 15, 0.55), 0 30px 60px rgba(0, 0, 0, 0.4); font-size: 10px; }
.extension-head { display: flex; align-items: center; justify-content: space-between; height: 38px; padding: 0 11px; border-bottom: 1px solid #3a424d; }
.panel-brand { display: flex; align-items: center; gap: 7px; color: #f5f7fa; font-size: 15px; font-weight: 750; letter-spacing: -0.03em; }
.panel-brand > i { width: 3px; height: 16px; background: var(--brand); }
.panel-brand small { color: #8e9aaa; font: 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.panel-actions { display: flex; gap: 4px; color: #9ca9b9; }
.panel-actions i { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid transparent; border-radius: 4px; font-style: normal; }
.panel-actions i.selected { color: #f3f6fa; border-color: #546275; background: #313b49; }
.panel-section { padding: 12px 11px; border-bottom: 1px solid #3a424d; }
.panel-caption { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; color: #91a0b2; font-size: 9px; }
.contract-chips { display: flex; gap: 5px; }
.contract-chips b { padding: 5px 7px; border: 1px solid #546275; border-radius: 4px; color: #b9c6d5; font-weight: 600; }
.contract-chips b.active { color: #f3f6fa; background: #313b49; }
.panel-market { display: flex; align-items: end; justify-content: space-between; padding: 13px 11px; border-bottom: 1px solid #3a424d; }
.panel-market > strong { color: #f3f6fa; font-size: 18px; letter-spacing: -0.04em; }
.panel-market strong small { color: #b4c0cf; font-size: 12px; }
.panel-market > div { display: flex; gap: 8px; color: #8f9dad; font-size: 9px; }.panel-market > div b { display: block; margin-top: 2px; color: #f5c978; font-size: 14px; }.panel-market > div b.amber { color: #f3b954; }
.lot-row { display: grid; grid-template-columns: 1.45fr repeat(5, 1fr); gap: 5px; }.lot-row > * { display: grid; place-items: center; min-height: 37px; border: 1px solid #455365; border-radius: 4px; color: #d6dfea; font-style: normal; font-weight: 650; }.lot-row > b { font-size: 20px; font-weight: 700; background: #313b49; }.lot-row .active { color: var(--brand); border-color: #4f987e; background: rgba(34, 197, 94, 0.12); }
.order-buttons, .split-buttons, .panel-muted-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 9px; }.order-buttons button, .split-buttons button { min-height: 34px; border: 1px solid transparent; border-radius: 4px; color: #07141c; font-size: 9px; font-weight: 850; }.order-buttons button:first-child { background: #3ccf9a; }.order-buttons button:last-child { color: #fee8ea; background: #7d3942; }.split-buttons button { color: #6de0bd; border-color: #536172; background: transparent; }.split-buttons button:last-child { color: #ff9b9f; }
.position-grid { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 0; }.position-grid div { min-height: 43px; padding-right: 7px; border-right: 1px solid #45505e; }.position-grid div + div { padding-left: 7px; }.position-grid div:last-child { border-right: 0; }.position-grid small { display: block; margin-bottom: 3px; color: #7d8998; font-size: 8px; }.position-grid b { color: #e8edf4; font-size: 10px; font-weight: 550; }.panel-muted-buttons { grid-template-columns: repeat(3, 1fr); }.panel-muted-buttons span { padding: 8px 4px; border: 1px solid #313945; border-radius: 4px; color: #7d6e59; text-align: center; font-size: 9px; }.panel-footer { display: flex; justify-content: space-between; padding: 11px; color: #8b98a7; font-size: 9px; }.panel-footer span:first-child { color: #d4dbe5; }.panel-footer i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: var(--brand); }
.stage-note { position: absolute; bottom: 0; left: 0; display: flex; gap: 17px; color: var(--dim); font: 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }.stage-note span + span { padding-left: 17px; border-left: 1px solid var(--line); }

.compatibility { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); align-items: stretch; max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compatibility-lead, .platform-chip { display: flex; align-items: center; gap: 12px; min-height: 85px; padding: 16px 20px; border-right: 1px solid var(--line); }.compatibility > :last-child { border-right: 0; }.compatibility-lead { display: grid; gap: 5px; align-content: center; }.compatibility-lead span, .platform-chip small { color: var(--dim); font: 800 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.12em; text-transform: uppercase; }.compatibility-lead strong { color: var(--ink); font-size: 13px; font-weight: 550; }.platform-chip b { display: block; color: #dce5ef; font-size: 12px; font-weight: 650; }.platform-chip small { display: block; margin-top: 5px; color: var(--dim); font-size: 9px; letter-spacing: 0.03em; text-transform: none; }.platform-mark { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(53, 200, 245, 0.5); border-radius: 7px; color: var(--brand); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }.platform-mark.muted { color: #8998aa; border-color: #405064; }.platform-chip.planned { opacity: 0.72; }

.section { max-width: var(--max); margin: 0 auto; padding: 126px 34px; }
.section-heading { margin-bottom: 50px; }.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr); gap: 70px; align-items: end; }.section-heading h2 { margin: 0; font-size: clamp(43px, 5vw, 68px); font-weight: 730; }.section-heading > p { max-width: 465px; margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.75; }.center-heading { max-width: 720px; margin-right: auto; margin-left: auto; text-align: center; }.center-heading .eyebrow { justify-content: center; }.center-heading > p:last-child { max-width: 600px; margin: 24px auto 0; }

.problem { border-top: 1px solid var(--line); }.problem-list { border-top: 1px solid var(--line); }.problem-list article { display: grid; grid-template-columns: 45px minmax(0, 1fr) auto; gap: 22px; align-items: center; min-height: 122px; padding: 20px 0; border-bottom: 1px solid var(--line); }.problem-list article > span { color: var(--brand); font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }.problem-list h3 { margin: 0 0 7px; font-size: 21px; font-weight: 650; }.problem-list p { max-width: 620px; margin: 0; color: var(--muted); font-size: 13px; }.problem-list article > b { align-self: start; padding-top: 4px; color: var(--dim); font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.14em; }

.features { border-top: 1px solid var(--line); }.feature-bento { display: grid; grid-template-columns: 1.08fr 1fr; grid-template-rows: repeat(2, minmax(260px, 1fr)); gap: 14px; }.bento-card { position: relative; min-height: 260px; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(18, 30, 44, 0.96), rgba(13, 17, 23, 0.96)); }.bento-card:hover { border-color: rgba(53, 200, 245, 0.52); }.bento-chart { grid-row: span 2; min-height: 534px; background: radial-gradient(circle at 80% 12%, rgba(53, 200, 245, 0.13), transparent 35%), linear-gradient(145deg, #122131, #0d1117); }.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #8291a5; font: 800 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.1em; }.status-pill { padding: 5px 7px; color: var(--brand); border: 1px solid rgba(53, 200, 245, 0.28); border-radius: 3px; background: var(--brand-soft); font-size: 8px; }.status-pill.roadmap { color: var(--warning); border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.08); }.bento-copy { position: absolute; right: 25px; bottom: 25px; left: 25px; }.bento-copy h3 { margin: 0 0 9px; font-size: 23px; font-weight: 680; }.bento-copy p { max-width: 440px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.mini-chart { position: absolute; top: 86px; right: 25px; bottom: 178px; left: 25px; overflow: hidden; border: 1px solid rgba(94, 131, 162, 0.35); background: #0a121d; }.mini-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(167, 176, 189, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(167, 176, 189, 0.08) 1px, transparent 1px); background-size: 100% 33px, 55px 100%; }.mini-line { position: absolute; top: 31%; right: 5%; left: -5%; height: 45%; border-top: 2px solid var(--brand); transform: rotate(-7deg); border-radius: 50%; }.mini-line::after { position: absolute; top: 31px; right: 4%; left: 6%; height: 80px; content: ""; border-top: 2px solid rgba(245, 158, 11, 0.75); transform: rotate(3deg); border-radius: 50%; }.mini-tag { position: absolute; padding: 4px 6px; border-radius: 3px; color: #06131a; background: var(--brand); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal; }.tag-ema { top: 17%; left: 33%; }.tag-paio { top: 37%; left: 66%; color: #1b1708; background: var(--warning); }.mini-level { position: absolute; top: 66%; right: 0; left: 0; border-top: 1px dashed rgba(53, 200, 245, 0.65); }
.execution-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; position: absolute; top: 89px; right: 25px; left: 25px; }.execution-preview span { display: grid; place-items: center; min-height: 59px; border: 1px solid #4b5b6f; border-radius: 5px; color: #07151d; background: var(--positive); font: 850 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }.execution-preview span:nth-child(2) { color: #fee9ec; background: #6f3640; }.execution-preview i { position: absolute; top: 73px; right: 4px; color: var(--brand); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal; }
.risk-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; position: absolute; top: 91px; right: 25px; left: 25px; background: var(--line); }.risk-preview span { display: grid; gap: 8px; min-height: 68px; padding: 12px; background: #101820; }.risk-preview small, .ai-snippet span { color: var(--dim); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.1em; }.risk-preview b { color: #dce8f3; font-size: 15px; }.risk-preview span:first-child b { color: var(--positive); }
.ai-snippet { display: grid; gap: 12px; position: absolute; top: 91px; right: 25px; left: 25px; padding: 16px; border-left: 2px solid var(--brand); background: rgba(53, 200, 245, 0.06); }.ai-snippet b { color: #dce8f3; font-size: 14px; }.ai-snippet i { color: var(--brand); font-size: 11px; font-style: normal; }

.ai-section { border-top: 1px solid var(--line); }.ai-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 14px; align-items: stretch; }.ai-panel, .ai-principles { border: 1px solid var(--line); border-radius: var(--radius); background: #0d1117; }.ai-panel-head, .risk-console-top { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid var(--line); color: #8f9daf; font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.05em; }.ai-panel-head b { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-size: 9px; letter-spacing: 0.13em; }.ai-panel-head b i { display: inline-block; }.ai-panel-body { padding: 4px 20px 0; }.ai-row { padding: 21px 0; border-bottom: 1px solid rgba(36, 48, 61, 0.8); }.ai-row small { display: block; margin-bottom: 8px; color: var(--dim); font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.14em; }.ai-row strong { font-size: 15px; font-weight: 650; }.ai-row .cyan { color: var(--brand); }.ai-row p { margin: 0; color: #c3cedc; font-size: 13px; line-height: 1.8; }.ai-levels { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 1px; margin: 20px 0 0; background: var(--line); }.ai-levels div { display: grid; gap: 7px; min-height: 77px; padding: 14px; background: #111821; }.ai-levels small { color: var(--dim); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.12em; }.ai-levels b { color: #dce7f2; font-size: 13px; }.ai-principles { padding: 29px; background: linear-gradient(145deg, #122131, #0d1117); }.roadmap-tag { display: inline-block; margin-bottom: 51px; padding: 6px 8px; color: #07141b; background: var(--brand); font: 850 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.11em; }.ai-principles h3 { margin-bottom: 17px; font-size: 25px; }.ai-principles p { color: var(--muted); font-size: 14px; line-height: 1.7; }.ai-principles ul { margin: 28px 0 0; padding: 0; list-style: none; }.ai-principles li { padding: 10px 0; border-top: 1px solid var(--line); color: #c7d2e1; font-size: 12px; }.ai-principles li::before { padding-right: 8px; color: var(--brand); content: "+"; }

.workflow { border-top: 1px solid var(--line); }.workflow-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-bright); }.workflow-track article { min-height: 205px; padding: 18px 22px 0 0; border-right: 1px solid var(--line); }.workflow-track article + article { padding-left: 22px; }.workflow-track article:last-child { border-right: 0; }.workflow-track span { color: var(--brand); font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }.workflow-track h3 { margin: 52px 0 9px; font-size: 23px; }.workflow-track p { max-width: 205px; margin: 0; color: var(--muted); font-size: 13px; }
.risk { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; border-top: 1px solid var(--line); }.risk-copy h2 { margin-bottom: 22px; font-size: clamp(44px, 5vw, 68px); }.risk-copy > p:not(.eyebrow):not(.risk-quote) { max-width: 520px; color: var(--muted); line-height: 1.75; }.risk-quote { max-width: 410px; margin: 30px 0 0; padding-left: 15px; border-left: 2px solid var(--brand); color: #d6e0ec; font-size: 14px; font-weight: 650; }.risk-console { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #0d1117; box-shadow: 16px 16px 0 rgba(53, 200, 245, 0.07); }.risk-console-top b { color: var(--warning); font-size: 9px; }.risk-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }.risk-stats div { display: grid; gap: 7px; min-height: 91px; padding: 19px; background: #111821; }.risk-stats small, .risk-limits span { color: var(--dim); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.1em; }.risk-stats strong { font-size: 21px; }.risk-state { display: flex; align-items: center; gap: 9px; padding: 18px 19px; color: #8f9db1; font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.1em; }.state-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 10px var(--positive); }.risk-state strong { margin-left: auto; color: var(--positive); }.risk-limits { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }.risk-limits div { display: grid; gap: 8px; padding: 17px 19px; background: #0d1117; }.risk-limits b { color: #e6edf7; font-size: 15px; }

.why, .use-cases { border-top: 1px solid var(--line); }.comparison { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }.comparison > div { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }.comparison > div:last-child { border-bottom: 0; }.comparison span, .comparison strong { padding: 18px 20px; font-size: 14px; }.comparison span { color: #8190a4; border-right: 1px solid var(--line); }.comparison strong { color: #d8e3f0; font-weight: 600; }.comparison-head span, .comparison-head strong { color: var(--brand); font: 850 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.13em; }.comparison-head strong { border-left: 0; }
.use-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }.use-case-grid article { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }.use-case-grid article:hover { border-color: rgba(53, 200, 245, 0.48); }.use-case-grid article > span { color: var(--brand); font: 850 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.13em; }.use-case-grid h3 { margin: 48px 0 10px; font-size: 19px; }.use-case-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.how { border-top: 1px solid var(--line); }.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-bright); }.steps li { min-height: 214px; padding: 18px 22px 0 0; border-right: 1px solid var(--line); }.steps li + li { padding-left: 22px; }.steps li:last-child { border-right: 0; }.steps li > span { color: var(--brand); font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }.steps h3 { margin: 53px 0 9px; font-size: 23px; }.steps p { max-width: 255px; margin: 0; color: var(--muted); font-size: 13px; }
.access { border-top: 1px solid var(--line); }.access-card { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; padding: 57px; border: 1px solid rgba(53, 200, 245, 0.3); border-radius: 12px; background: radial-gradient(circle at 88% 18%, rgba(53, 200, 245, 0.22), transparent 34%), linear-gradient(135deg, #112131, #0d1117); }.access-card h2 { margin-bottom: 20px; font-size: clamp(45px, 5vw, 70px); }.access-card > div:first-child > p:last-child { max-width: 490px; margin: 0; color: var(--muted); line-height: 1.75; }.access-panel { padding: 22px; border: 1px solid var(--line-bright); border-radius: 8px; background: rgba(8, 11, 16, 0.62); }.access-panel > div { display: grid; gap: 7px; padding: 13px 0; border-bottom: 1px solid var(--line); }.access-panel small { color: var(--dim); font: 850 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.14em; }.access-panel strong { color: #dce7f2; font-size: 14px; }.access-panel .button { width: 100%; margin-top: 22px; }.access-note { margin: 17px 0 0; color: var(--dim); font-size: 11px; line-height: 1.6; }
.faq { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 70px; border-top: 1px solid var(--line); }.faq .section-heading { align-self: start; margin: 0; }.faq-list { border-top: 1px solid var(--line); }.faq details { border-bottom: 1px solid var(--line); }.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 650; }.faq summary::-webkit-details-marker { display: none; }.faq summary span { color: var(--brand); font-size: 23px; font-weight: 400; transition: transform 160ms ease; }.faq details[open] summary span { transform: rotate(45deg); }.faq details p { max-width: 650px; margin: 0; padding: 0 28px 21px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.site-footer { max-width: 1280px; margin: 0 auto; padding: 70px 34px 32px; border-top: 1px solid var(--line); }.footer-main { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr); gap: 80px; }.site-footer .brand { font-size: 19px; }.site-footer > .footer-main > div:first-child > p { margin: 17px 0 0; color: var(--muted); font-size: 13px; }.site-footer .footer-disclaimer { max-width: 500px; color: var(--dim) !important; font-size: 11px !important; line-height: 1.65; }.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }.footer-links b { margin-bottom: 4px; color: var(--brand); font: 850 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.14em; }.footer-links a { color: #9caabd; font-size: 12px; }.footer-links a:hover { color: var(--brand); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 63px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--dim); font: 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; }

.legal-page { max-width: 900px; min-height: calc(100vh - 160px); }.legal-page h1 { max-width: 760px; margin-bottom: 14px; font-size: clamp(48px, 6vw, 76px); }.legal-page h2 { margin: 48px 0 12px; color: #dce5f1; font-size: 23px; }.legal-page p { max-width: 720px; color: var(--muted); font-size: 15px; line-height: 1.8; }.legal-page .legal-updated { color: var(--dim); font-size: 12px; }.legal-link { color: var(--brand); }.legal-page .eyebrow { margin-bottom: 28px; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr); gap: 32px; padding-right: 34px; padding-left: 34px; }
  .hero h1 { font-size: clamp(52px, 6vw, 75px); }
  .product-stage { transform: scale(0.96); transform-origin: center right; }
  .compatibility { margin-right: 34px; margin-left: 34px; }
}
@media (max-width: 980px) {
  .nav-status { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 72px; }
  .hero-copy { max-width: 720px; }
  .product-stage { max-width: 700px; width: 100%; min-height: 610px; margin: 0 auto; transform: none; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .feature-bento { grid-template-columns: 1fr 1fr; }.bento-chart { grid-row: auto; min-height: 430px; grid-column: 1 / -1; }.mini-chart { bottom: 145px; }.bento-copy { bottom: 22px; }
  .ai-layout, .risk, .access-card { grid-template-columns: 1fr; gap: 40px; }
  .use-case-grid { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; gap: 42px; }
  .footer-main { grid-template-columns: 1fr; gap: 46px; }
}
@media (max-width: 760px) {
  .nav-shell { min-height: 68px; padding: 0 20px; gap: 12px; }.site-header .button-small { display: none; }.menu-toggle { display: inline-flex; margin-left: auto; }.site-header nav { display: none; }.site-header nav.is-open { position: absolute; top: 68px; right: 20px; left: 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 8px; background: rgba(13, 17, 23, 0.98); box-shadow: 0 16px 42px rgba(0, 0, 0, 0.5); }.site-header nav.is-open a { padding: 13px 14px; border-bottom: 1px solid rgba(36, 48, 61, 0.7); }.site-header nav.is-open a:last-child { border-bottom: 0; }
  .hero { min-height: 0; padding: 60px 20px 70px; }.hero h1 { font-size: clamp(49px, 14vw, 70px); }.hero-lede { font-size: 16px; }.hero-proof { margin-top: 36px; }.hero-proof div { padding-right: 8px; }.hero-proof div + div { padding-left: 8px; }.hero-proof span { font-size: 10px; }
  .product-stage { min-height: 675px; padding-top: 16px; }.chart-window { position: relative; top: 33px; right: auto; left: auto; height: 295px; transform: none; }.chart-window-bar { font-size: 8px; }.chart-toolbar { gap: 7px; }.chart-canvas { height: 187px; }.extension-panel { right: 0; bottom: 38px; width: min(306px, 91%); }.stage-note { right: 0; bottom: 0; justify-content: space-between; gap: 8px; }.stage-note span + span { padding-left: 8px; text-align: right; }
  .compatibility { grid-template-columns: 1fr; margin: 0 20px; }.compatibility-lead, .platform-chip { min-height: 63px; border-right: 0; border-bottom: 1px solid var(--line); }.compatibility > :last-child { border-bottom: 0; }.compatibility-lead { display: flex; justify-content: space-between; }.compatibility-lead strong { text-align: right; }
  .section { padding: 84px 20px; }.section-heading { margin-bottom: 36px; }.section-heading h2 { font-size: clamp(40px, 11vw, 58px); }.center-heading > p:last-child { margin-top: 19px; }.problem-list article { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; align-items: start; }.problem-list article > b { grid-column: 2; padding-top: 0; }.problem-list h3 { font-size: 19px; }
  .feature-bento { grid-template-columns: 1fr; }.bento-chart { grid-column: auto; min-height: 420px; }.bento-card { min-height: 257px; }.mini-chart { bottom: 144px; }
  .ai-levels { grid-template-columns: 1fr 1fr; }.ai-levels div:last-child { grid-column: 1 / -1; }.ai-principles { padding: 25px; }.roadmap-tag { margin-bottom: 34px; }
  .workflow-track, .steps { grid-template-columns: 1fr 1fr; gap: 18px; border-top: 0; }.workflow-track article, .workflow-track article + article, .steps li, .steps li + li { min-height: 173px; padding: 16px 10px 0 0; border-top: 1px solid var(--line-bright); border-right: 0; }.workflow-track article:nth-child(even), .steps li:nth-child(even) { padding-left: 10px; }.workflow-track h3, .steps h3 { margin-top: 33px; font-size: 20px; }
  .risk-copy h2, .access-card h2 { font-size: clamp(43px, 12vw, 61px); }.access-card { padding: 29px 22px; }.access-panel { padding: 17px; }.use-case-grid { grid-template-columns: 1fr; }.use-case-grid article { min-height: 180px; }.use-case-grid h3 { margin-top: 35px; }
  .comparison span, .comparison strong { padding: 15px 12px; font-size: 12px; }.faq summary { font-size: 14px; }.faq details p { padding-right: 5px; }.footer-main { gap: 38px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 27px 16px; }.site-footer { padding: 52px 20px 27px; }.footer-bottom { display: grid; gap: 7px; margin-top: 42px; }
}
@media (max-width: 420px) {
  .hero-proof { grid-template-columns: 1fr; }.hero-proof div, .hero-proof div + div { grid-template-columns: 30px 1fr; padding: 10px 0; border-right: 0; border-bottom: 1px solid var(--line); }.hero-proof div:last-child { border-bottom: 0; }.hero-proof strong { padding-top: 2px; }.product-stage { min-height: 650px; }.extension-panel { width: 100%; }.stage-note { font-size: 8px; }.chart-toolbar span:nth-child(n+5):not(.toolbar-spacer) { display: none; }.ai-levels { grid-template-columns: 1fr; }.ai-levels div:last-child { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.button, .faq summary span { transition: none; } }
