:root {
  --ink: #eef8f5;
  --muted: #8ea6a8;
  --faint: #567174;
  --bg: #07131d;
  --bg-deep: #040b12;
  --panel: #0b1d27;
  --panel-2: #102630;
  --line: rgba(177, 229, 224, 0.13);
  --line-strong: rgba(177, 229, 224, 0.25);
  --teal: #62f4df;
  --teal-dark: #21b8ad;
  --amber: #ffbe6d;
  --red: #ff827d;
  --blue: #93adff;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 19, 29, 0.1), rgba(4, 11, 18, 0.95) 68%),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(151, 231, 220, 0.025) 80px);
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 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; }
.page-noise {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  mix-blend-mode: screen;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 15, 23, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .1em; font-size: 14px; }
.brand small { color: var(--teal); font-family: var(--mono); font-size: 10px; font-weight: 400; letter-spacing: .07em; }
.brand-mark { display: inline-flex; width: 26px; height: 22px; align-items: flex-end; gap: 3px; transform: skew(-20deg); }
.brand-mark i { display: block; width: 6px; border: 1px solid var(--teal); background: rgba(98, 244, 223, .18); }
.brand-mark i:nth-child(1) { height: 13px; }
.brand-mark i:nth-child(2) { height: 20px; background: rgba(255, 190, 109, .55); border-color: var(--amber); }
.brand-mark i:nth-child(3) { height: 16px; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; color: var(--muted); }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--ink); }
.site-nav .nav-login { color: var(--ink); }
.nav-divider { width: 1px; height: 20px; background: var(--line); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; color: var(--muted); background: transparent; font-size: 13px; cursor: pointer; }
.nav-dropdown-trigger span { color: var(--teal); font-family: var(--mono); font-size: 10px; }
.nav-dropdown-trigger:hover, .nav-dropdown.open .nav-dropdown-trigger { color: var(--ink); }
.dropdown-menu { position: absolute; top: calc(100% + 18px); right: -12px; display: none; min-width: 168px; padding: 8px; border: 1px solid var(--line-strong); background: rgba(5, 15, 23, .98); box-shadow: 0 20px 45px rgba(0, 0, 0, .28); }
.nav-dropdown.open .dropdown-menu, .nav-dropdown:hover .dropdown-menu { display: grid; }
.dropdown-menu a { padding: 9px 10px; color: var(--muted); font-size: 12px; }
.dropdown-menu a:hover { color: var(--teal); background: rgba(98, 244, 223, .06); }
.menu-toggle { display: none; border: 0; padding: 8px; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 5px; background: var(--ink); transition: transform .2s ease; }

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-family: var(--mono); font-size: 15px; }
.button-small { min-height: 36px; padding: 0 14px; font-size: 12px; }
.button-primary { color: #031217; background: var(--teal); box-shadow: 0 12px 32px rgba(98, 244, 223, .15); }
.button-primary:hover { background: #a1fff1; box-shadow: 0 16px 34px rgba(98, 244, 223, .25); }
.button-glow { color: #031217; background: var(--amber); box-shadow: 0 9px 24px rgba(255, 190, 109, .14); }
.button-quiet { border-color: var(--line-strong); color: var(--ink); background: rgba(8, 22, 30, .42); }
.button-quiet:hover, .button-outline:hover { border-color: var(--teal); color: var(--teal); background: rgba(98, 244, 223, .06); }
.button-outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.button-block { width: 100%; }
.button-large { min-height: 56px; padding: 0 26px; }

.hero { position: relative; min-height: 0; padding: 120px 0 0; isolation: isolate; }
.hero-art { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .74; }
.hero-art-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 20, .95) 0%, rgba(4, 13, 20, .72) 36%, rgba(4, 13, 20, .1) 78%),
    linear-gradient(180deg, rgba(4, 13, 20, .36), var(--bg) 98%);
}
.hero-scanline { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: .5; }
.hero-shell { display: block; }
.hero-copy { max-width: 860px; margin: 0 auto; text-align: center; }
.eyebrow { margin: 0 0 18px; color: var(--teal); font-family: var(--mono); font-size: 11px; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }
.eyebrow-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px var(--amber); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; }
h1 { max-width: 850px; margin: 0 auto 24px; font-size: clamp(48px, 6vw, 76px); letter-spacing: -.055em; }
.hero-copy > .eyebrow { display: none; }
h1 em, h2 em { color: inherit; font-style: normal; }
.hero-copy h1 {
  background: linear-gradient(100deg, #477bff 12%, #55b8df 58%, #60d5c5 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede { max-width: 700px; margin: 0 auto 30px; color: #aeb5c6; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.hero-footnote { margin: 17px 0 0; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .03em; }
.status-dot, .live-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.slash { padding: 0 8px; color: var(--faint); }
.hero-signals { display: none; gap: 28px; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); }
.hero-signals div { display: grid; gap: 2px; }
.hero-signals strong { color: var(--ink); font-family: var(--mono); font-size: 18px; font-weight: 500; }
.hero-signals span { color: var(--faint); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.hero-media { position: relative; z-index: 1; width: min(960px, 100%); margin: 52px auto 32px; }
.hero-media-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(177, 229, 224, .22); border-radius: 10px; background: #07131d; box-shadow: 0 28px 80px rgba(0, 0, 0, .36), 0 0 0 8px rgba(11, 31, 39, .26); }
.hero-media-video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .86; }
.hero-media-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 15, 23, .12), rgba(5, 15, 23, .72)); }
.hero-media-chrome { position: absolute; top: 0; right: 0; left: 0; display: flex; min-height: 42px; align-items: center; gap: 12px; padding: 0 16px; border-bottom: 1px solid rgba(177, 229, 224, .16); color: rgba(223, 246, 240, .72); background: rgba(5, 15, 23, .52); font: 10px var(--mono); }
.hero-media-chrome .terminal-lights { display: flex; gap: 5px; }
.hero-media-chrome .terminal-lights i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.hero-media-chrome .terminal-lights i:nth-child(2) { background: var(--amber); }
.hero-media-chrome .terminal-lights i:nth-child(3) { background: var(--teal); }
.hero-media-live { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; color: var(--teal); }
.hero-media-caption { position: absolute; right: 28px; bottom: 25px; left: 28px; display: grid; gap: 6px; }
.hero-media-caption span { color: var(--teal); font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.hero-media-caption strong { max-width: 580px; color: #f3fbf8; font-size: clamp(20px, 3vw, 36px); line-height: 1.08; letter-spacing: -.04em; }
.hero-terminal { width: min(1040px, 100%); margin: 0 auto; overflow: hidden; border: 1px solid rgba(164, 230, 223, .25); border-radius: 7px; background: rgba(5, 17, 25, .78); box-shadow: 0 35px 100px rgba(0, 0, 0, .35), 0 0 0 8px rgba(11, 31, 39, .28); backdrop-filter: blur(16px); }
.terminal-topbar, .chart-footer, .quote-row, .signal-strip { display: flex; align-items: center; justify-content: space-between; }
.terminal-topbar { min-height: 38px; padding: 0 15px; border-bottom: 1px solid var(--line); color: var(--faint); font-family: var(--mono); font-size: 10px; }
.terminal-lights { display: flex; gap: 5px; }
.terminal-lights i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.terminal-lights i:nth-child(2) { background: var(--amber); }
.terminal-lights i:nth-child(3) { background: var(--teal); }
.terminal-path { margin-left: 18px; flex: 1; }
.terminal-state { color: var(--teal); }
.terminal-state span { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--teal); }
.quote-row { padding: 22px 23px 14px; }
.quote-symbol { display: block; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; }
.quote-symbol .live-dot { margin-right: 8px; }
.quote-row strong { display: block; margin-top: 4px; font-family: var(--mono); font-size: 26px; font-weight: 500; letter-spacing: -.04em; }
.quote-change { color: var(--teal); font-family: var(--mono); font-size: 13px; }
.quote-change.negative { color: var(--red); }
.chart-frame { position: relative; height: 260px; padding: 0 17px 0 18px; }
.chart-frame canvas { width: 100%; height: 100%; }
.chart-guides { position: absolute; z-index: 1; top: 10px; right: 17px; bottom: 14px; display: flex; flex-direction: column; justify-content: space-between; color: rgba(195, 220, 216, .35); font-family: var(--mono); font-size: 9px; pointer-events: none; }
.chart-guides::before { position: absolute; z-index: -1; top: 3px; right: 25px; bottom: 3px; width: 1px; background: var(--line); content: ""; }
.chart-tooltip { position: absolute; right: 47px; bottom: 65px; padding: 3px 6px; border: 1px solid rgba(98, 244, 223, .3); border-radius: 2px; color: var(--teal); background: rgba(8, 25, 32, .9); font-family: var(--mono); font-size: 9px; }
.chart-footer { min-height: 44px; padding: 0 21px; border-top: 1px solid var(--line); color: var(--faint); font-family: var(--mono); font-size: 9px; }
.chart-legend { display: flex; align-items: center; gap: 5px; }
.legend-candle { width: 8px; height: 8px; background: var(--teal); }
.legend-line { width: 14px; height: 1px; margin-left: 7px; background: var(--amber); }
.timeframes { display: flex; gap: 12px; }
.timeframe { padding: 3px 0; border: 0; color: var(--faint); background: none; font-family: var(--mono); font-size: 10px; cursor: pointer; }
.timeframe.active, .timeframe:hover { color: var(--teal); }
.signal-strip { min-height: 58px; gap: 12px; padding: 0 21px; border-top: 1px solid rgba(98, 244, 223, .15); background: rgba(98, 244, 223, .04); }
.signal-label { display: flex; align-items: center; gap: 7px; color: var(--teal); font-family: var(--mono); font-size: 9px; text-transform: uppercase; white-space: nowrap; }
.signal-icon { color: var(--amber); }
.signal-strip strong { flex: 1; color: #cbe7e3; font-size: 11px; font-weight: 500; }
.signal-score { color: var(--amber); font-family: var(--mono); font-size: 10px; white-space: nowrap; }

.ticker-section { display: flex; align-items: center; min-height: 54px; gap: 20px; padding: 0 max(24px, calc((100% - 1180px) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(7, 19, 29, .92); }
.ticker-label, .ticker-note { color: var(--faint); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.ticker-label { display: flex; align-items: center; gap: 8px; color: var(--teal); }
.ticker-viewport { min-width: 0; overflow: hidden; flex: 1; }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 34px; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10px; }
.ticker-symbol { color: var(--muted); }
.ticker-price { color: var(--ink); }
.ticker-change { color: var(--teal); }
.ticker-down .ticker-change { color: var(--red); }

.section { padding: 132px 0; }
.section-intro { max-width: 650px; margin-bottom: 54px; }
.section-intro h2 { max-width: 660px; margin-bottom: 18px; font-size: clamp(36px, 4.5vw, 60px); letter-spacing: -.05em; }
.section-intro > p:last-child { max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 16px; }
.feature-stack { display: grid; }
.feature-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 64px; min-height: 0; margin-bottom: 120px; padding: 0; border: 0; }
.feature-block:last-child { margin-bottom: 0; }
.feature-block.feature-reverse { grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr); }
.feature-block.feature-reverse > .feature-text { order: 2; }
.feature-block.feature-reverse > :not(.feature-text) { order: 1; }
.feature-text { max-width: 475px; }
.feature-title { max-width: 470px; margin: 0 0 20px; color: var(--ink); font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -.025em; }
.feature-text p { max-width: 460px; margin-bottom: 24px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.feature-list { display: grid; gap: 8px; margin: 0 0 26px; padding: 0; color: #bfd4d1; font-size: 13px; list-style: none; }
.feature-list li { display: flex; gap: 9px; align-items: flex-start; }
.feature-list li::before { flex: 0 0 auto; color: var(--teal); content: "→"; font-family: var(--mono); }
.feature-block > .mini-chart-panel { width: 100%; padding: 20px; border-radius: 10px; }
.feature-block .mini-chart-panel svg { min-height: 210px; }
.feature-block .code-window { width: 100%; }
.feature-code-window { min-height: 290px; border-color: rgba(147, 173, 255, .25); background: linear-gradient(145deg, rgba(9, 22, 35, .96), rgba(3, 9, 17, .9)); box-shadow: 0 25px 60px rgba(0, 0, 0, .2); }
.feature-code-window pre { padding: 28px; font-size: 13px; line-height: 2.1; }
.feature-video-window { position: relative; min-height: 290px; overflow: hidden; border: 1px solid rgba(147, 173, 255, .25); border-radius: 10px; background: #050d16; box-shadow: 0 25px 60px rgba(0, 0, 0, .2); }
.feature-video-window video { display: block; width: 100%; height: 100%; min-height: 290px; object-fit: cover; opacity: .82; }
.feature-video-window::after { position: absolute; inset: 0; pointer-events: none; content: ""; background: linear-gradient(180deg, rgba(4, 13, 20, .04) 28%, rgba(4, 13, 20, .82) 100%); }
.feature-video-overlay { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; display: grid; gap: 6px; }
.feature-video-overlay span { color: var(--teal); font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.feature-video-overlay strong { color: var(--ink); font-size: 28px; letter-spacing: -.04em; }
.ai-visual-container { position: relative; min-height: 350px; overflow: hidden; border: 1px solid rgba(98, 244, 223, .2); background: linear-gradient(145deg, rgba(11, 37, 43, .95), rgba(5, 18, 27, .92)); box-shadow: 0 25px 75px rgba(0, 0, 0, .22); }
.ai-visual-container::before { position: absolute; inset: 0; opacity: .35; background: repeating-linear-gradient(0deg, transparent 0, transparent 41px, rgba(177, 229, 224, .09) 42px), repeating-linear-gradient(90deg, transparent 0, transparent 63px, rgba(177, 229, 224, .06) 64px); content: ""; }
.ai-visual-container .ai-orbit { top: 45px; right: 28%; width: 160px; height: 160px; }
.ai-visual-container .ai-orbit::after { inset: 23px; }
.ai-visual-container .ai-orbit b { font-size: 35px; }
.ai-visual-container .ai-orbit span { width: 7px; height: 7px; }
.ai-visual-bars { position: absolute; right: 28px; bottom: 70px; left: 28px; display: flex; height: 105px; align-items: flex-end; gap: 12px; padding: 0 18px; border-bottom: 1px solid rgba(98, 244, 223, .2); }
.ai-visual-bars i { flex: 1; min-width: 8px; border: 1px solid rgba(98, 244, 223, .35); background: linear-gradient(180deg, rgba(98, 244, 223, .72), rgba(98, 244, 223, .08)); }
.ai-visual-list { position: absolute; top: 22px; right: 22px; display: grid; width: 100px; gap: 8px; }
.ai-visual-list span { height: 5px; background: rgba(207, 243, 236, .55); }
.ai-visual-list span:nth-child(2) { width: 75%; background: rgba(255, 190, 109, .6); }
.ai-visual-list span:nth-child(3) { width: 52%; }
.ai-visual-container .ai-answer { position: absolute; right: 28px; bottom: 20px; left: 28px; margin: 0; padding: 11px 14px; font-size: 11px; }
.community-visual { min-height: 350px; padding: 28px; border: 1px solid rgba(147, 173, 255, .22); background: linear-gradient(145deg, rgba(20, 31, 47, .95), rgba(9, 24, 32, .82)); }
.community-network { position: relative; height: 250px; border: 1px solid rgba(177, 229, 224, .12); background: radial-gradient(circle at 50% 45%, rgba(98, 244, 223, .12), transparent 41%), rgba(4, 13, 20, .35); }
.community-network::before, .community-network::after { position: absolute; inset: 15% 21%; border: 1px dashed rgba(98, 244, 223, .23); border-radius: 50%; content: ""; transform: rotate(18deg); }
.community-network::after { inset: 28% 9%; border-color: rgba(255, 190, 109, .2); transform: rotate(-24deg); }
.network-node { position: absolute; z-index: 1; display: grid; width: 45px; height: 45px; place-items: center; border: 2px solid var(--panel); border-radius: 50%; color: #07131d; font: 10px var(--mono); }
.network-node.node-a { top: 38px; left: 19%; background: var(--teal); }
.network-node.node-b { top: 38%; left: 48%; background: var(--amber); }
.network-node.node-c { right: 15%; bottom: 27px; background: var(--blue); }
.network-node.node-d { right: 12%; top: 23%; color: var(--ink); background: #24414a; }
.network-line { position: absolute; z-index: 0; height: 1px; transform-origin: left center; background: rgba(98, 244, 223, .43); }
.network-line.line-a { top: 30%; left: 28%; width: 26%; transform: rotate(21deg); }
.network-line.line-b { top: 52%; left: 56%; width: 29%; transform: rotate(32deg); }
.network-line.line-c { top: 30%; left: 57%; width: 23%; transform: rotate(-12deg); background: rgba(255, 190, 109, .45); }
.community-network strong { position: absolute; right: 15px; bottom: 13px; color: var(--teal); font: 10px var(--mono); }
.community-visual .community-quote { max-width: none; margin-top: 19px; padding-top: 16px; font-size: 12px; }
.feature-screener-window { min-width: 0; width: 100%; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.product-card { position: relative; overflow: hidden; min-height: 348px; padding: 31px; border: 1px solid var(--line); background: rgba(10, 27, 36, .72); }
.product-card:hover { border-color: var(--line-strong); }
.product-card-large { grid-column: span 2; display: grid; grid-template-columns: minmax(260px, .64fr) minmax(380px, 1.36fr); align-items: center; gap: 36px; min-height: 365px; background: linear-gradient(110deg, rgba(11, 35, 43, .96), rgba(7, 20, 28, .68)); }
.card-kicker { display: block; margin-bottom: 20px; color: var(--teal); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { max-width: 360px; margin-bottom: 15px; font-size: 27px; letter-spacing: -.035em; }
.product-card p { max-width: 420px; margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 12px; font-weight: 700; }
.text-link span { color: var(--teal); font-family: var(--mono); }
.text-link:hover { color: var(--teal); }
.mini-chart-panel { padding: 20px; border: 1px solid rgba(98, 244, 223, .18); background: rgba(3, 14, 20, .6); }
.mini-chart-top, .mini-chart-axis { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; }
.mini-chart-top { margin-bottom: 12px; color: var(--muted); }
.mini-positive { color: var(--teal); }
.mini-chart-panel svg { display: block; width: 100%; height: auto; }
.mini-grid { fill: none; stroke: rgba(176, 228, 223, .1); stroke-width: 1; }
.mini-area { fill: url(#miniArea); }
.mini-line { fill: none; stroke: var(--teal); stroke-width: 2; }
.mini-chart-axis { color: var(--faint); }
.ai-card { background: #0d2028; }
.ai-orbit { position: absolute; top: 21px; right: 23px; width: 90px; height: 90px; border: 1px solid rgba(98, 244, 223, .18); border-radius: 50%; }
.ai-orbit::after { position: absolute; inset: 13px; border: 1px dashed rgba(255, 190, 109, .35); border-radius: 50%; content: ""; }
.ai-orbit span { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.ai-orbit span:nth-child(1) { top: 10px; left: 23px; }
.ai-orbit span:nth-child(2) { right: 7px; bottom: 21px; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.ai-orbit span:nth-child(3) { bottom: 15px; left: 18px; }
.ai-orbit b { position: absolute; inset: 0; display: grid; place-items: center; color: var(--amber); font-size: 22px; font-weight: 400; }
.ai-card h3 { max-width: 270px; margin-top: 60px; }
.ai-prompt, .ai-answer { display: flex; align-items: center; gap: 8px; padding: 10px 12px; font-family: var(--mono); font-size: 10px; }
.ai-prompt { margin-top: 25px; border: 1px solid var(--line); color: var(--muted); background: rgba(4, 13, 20, .5); }
.ai-prompt span { color: var(--teal); }
.ai-prompt b { margin-left: auto; color: var(--amber); font-weight: 400; }
.ai-answer { margin-top: 8px; border-left: 2px solid var(--amber); color: #cce2df; background: rgba(255, 190, 109, .05); }
.script-card { background: #091923; }
.code-glow { position: absolute; top: -100px; right: -50px; width: 210px; height: 210px; border-radius: 50%; background: rgba(147, 173, 255, .14); filter: blur(45px); }
.script-card h3 { max-width: 350px; }
.code-window { position: absolute; right: 31px; bottom: 25px; left: 31px; border: 1px solid rgba(147, 173, 255, .21); background: rgba(3, 9, 17, .82); }
.code-top { display: flex; align-items: center; gap: 5px; min-height: 28px; padding: 0 10px; border-bottom: 1px solid var(--line); }
.code-top > span { width: 5px; height: 5px; border-radius: 50%; background: var(--faint); }
.code-top > span:nth-child(2) { background: var(--amber); }
.code-top > span:nth-child(3) { background: var(--teal); }
.code-top small { margin-left: 8px; color: var(--faint); font-family: var(--mono); font-size: 9px; }
.code-window pre { margin: 0; padding: 14px; color: #b8cbf0; font: 10px/1.9 var(--mono); }
.code-window i { color: var(--teal); font-style: normal; }
.code-window b { color: var(--amber); font-weight: 400; }
.code-window em { color: #e6a9ff; font-style: normal; }
.code-window strong { color: var(--teal); font-weight: 400; }
.community-card { background: linear-gradient(145deg, rgba(20, 31, 47, .95), rgba(9, 24, 32, .82)); }
.community-head { display: flex; justify-content: space-between; align-items: flex-start; }
.community-live { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.community-live .status-dot { margin-right: 6px; }
.community-card h3 { max-width: 380px; }
.people-stack { display: flex; margin: 34px 0 23px; }
.people-stack span { display: grid; width: 40px; height: 40px; margin-right: -7px; place-items: center; border: 2px solid var(--panel); border-radius: 50%; color: #061218; background: var(--teal); font-family: var(--mono); font-size: 10px; }
.people-stack span:nth-child(2) { color: #0d1822; background: var(--amber); }
.people-stack span:nth-child(3) { color: #fff; background: #8193ee; }
.people-stack span:nth-child(4) { color: var(--ink); background: #24414a; }
.community-quote { max-width: 420px; padding-top: 17px; border-top: 1px solid var(--line); color: #b6caca; font-size: 13px; }
.community-quote span { color: var(--faint); font-family: var(--mono); font-size: 10px; }

.screener-section { background: rgba(3, 10, 16, .34); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.screener-layout { display: grid; grid-template-columns: minmax(250px, .65fr) minmax(570px, 1.35fr); align-items: center; gap: 70px; }
.screener-layout .section-intro { margin-bottom: 0; }
.screener-layout .button { margin-top: 28px; }
.screener-window { overflow: hidden; border: 1px solid var(--line-strong); background: rgba(6, 17, 25, .86); }
.window-bar, .window-footer { display: flex; justify-content: space-between; padding: 14px 17px; color: var(--faint); font: 10px var(--mono); }
.window-bar { border-bottom: 1px solid var(--line); }
.window-refresh { color: var(--teal); }
.window-refresh .status-dot { margin-right: 5px; }
.screener-table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 510px; }
th, td { padding: 14px 17px; border-bottom: 1px solid rgba(177, 229, 224, .08); text-align: left; white-space: nowrap; }
th { color: var(--faint); font: 10px var(--mono); font-weight: 400; text-transform: uppercase; }
td { color: #cde3df; font: 12px var(--mono); }
td:first-child { color: var(--ink); font-weight: 500; }
td:nth-child(2) { color: var(--ink); }
td .pair-name { display: inline-flex; align-items: center; gap: 8px; }
.pair-icon { display: inline-grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: #061218; background: var(--teal); font-size: 9px; }
.pair-icon.amber { background: var(--amber); }
.pair-icon.blue { background: var(--blue); }
.up { color: var(--teal) !important; }
.down { color: var(--red) !important; }
.mover-change.up { background: rgba(98, 244, 223, .12); }
.mover-change.down { background: rgba(255, 130, 125, .12); }
.signal-buy, .signal-hold, .signal-watch, .signal-sell { display: inline-block; padding: 3px 6px; border: 1px solid rgba(98, 244, 223, .25); color: var(--teal); font-size: 9px; }
.signal-hold { border-color: rgba(255, 190, 109, .25); color: var(--amber); }
.signal-watch { border-color: rgba(147, 173, 255, .25); color: var(--blue); }
.signal-sell { border-color: rgba(255, 130, 125, .28); color: var(--red); }
.window-footer { border-top: 1px solid var(--line); border-bottom: 0; }
.window-footer b { color: var(--ink); font-weight: 400; }

.movers-section { padding-top: 100px; padding-bottom: 100px; }
.section-intro-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; }
.section-intro-row { max-width: none; }
.market-status { color: var(--teal); font: 10px var(--mono); text-transform: uppercase; }
.market-status .status-dot { margin-right: 7px; }
.movers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.movers-panel { padding: 0; border: 0; background: transparent; }
.movers-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.movers-panel h3 { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 28px; letter-spacing: -.03em; }
.movers-panel h3 .live-dot { width: 7px; height: 7px; }
.up-mark { color: var(--teal); }
.down-mark { color: var(--red); }
.period-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.period-tab { min-width: 58px; padding: 7px 16px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); background: transparent; font-size: 12px; cursor: pointer; }
.period-tab.active, .period-tab:hover { border-color: var(--ink); color: var(--bg-deep); background: var(--ink); }
.mover-row { display: grid; grid-template-columns: minmax(160px, 1fr) auto auto; gap: 20px; align-items: center; padding: 16px 0; border-top: 0; border-bottom: 1px solid rgba(177, 229, 224, .1); }
.mover-info { display: flex; align-items: center; gap: 10px; }
.mover-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: #07131d; background: var(--teal); font: 11px var(--mono); }
.mover-icon.amber { background: var(--amber); }
.mover-icon.blue { background: var(--blue); }
.mover-name { color: var(--ink); font-size: 12px; font-weight: 700; }
.mover-ticker { color: var(--faint); font: 9px var(--mono); }
.mover-price, .mover-change { font: 11px var(--mono); }
.mover-price { color: var(--ink); }
.mover-change { min-width: 78px; padding: 6px 10px; border-radius: 6px; text-align: center; }
.movers-panel .text-link { margin-top: 20px; color: var(--muted); font-size: 11px; }

.stats-section { padding-top: 110px; border-top: 1px solid var(--line); background: rgba(4, 13, 20, .45); }
.stats-section .section-intro { margin-bottom: 42px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { padding: 29px 20px 25px 0; border-right: 1px solid var(--line); }
.stat-item:not(:first-child) { padding-left: 25px; }
.stat-item:last-child { border-right: 0; }
.stat-item strong { display: block; margin-bottom: 9px; color: var(--teal); font: 500 35px var(--mono); letter-spacing: -.07em; }
.stat-item strong span { color: var(--amber); font-size: 17px; letter-spacing: 0; }
.stat-item > span { color: var(--muted); font-size: 12px; }

.plans-section { padding-top: 125px; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plan-card { position: relative; display: flex; min-height: 405px; flex-direction: column; padding: 25px 22px 21px; border: 1px solid var(--line); background: rgba(9, 24, 32, .72); }
.plan-card:hover { border-color: var(--line-strong); }
.plan-featured { border-color: rgba(98, 244, 223, .55); background: rgba(10, 35, 40, .9); }
.plan-ribbon { position: absolute; top: -1px; right: 16px; padding: 6px 8px; color: var(--bg-deep); background: var(--teal); font: 9px var(--mono); text-transform: uppercase; }
.plan-head { display: grid; gap: 5px; margin-bottom: 20px; }
.plan-head span { color: var(--ink); font-size: 19px; font-weight: 700; }
.plan-head small { color: var(--faint); font: 10px var(--mono); }
.plan-price { display: flex; align-items: baseline; min-height: 48px; margin-bottom: 22px; }
.plan-price sup { align-self: flex-start; margin-top: 6px; color: var(--amber); font: 14px var(--mono); }
.plan-price strong { color: var(--ink); font: 500 32px var(--mono); letter-spacing: -.06em; }
.plan-price small { color: var(--faint); font: 10px var(--mono); }
.plan-card ul { display: grid; gap: 12px; flex: 1; margin: 0 0 25px; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.plan-card li::before { margin-right: 8px; color: var(--teal); content: "✓"; font-family: var(--mono); }
.billing-note { margin: 21px 0 0; color: var(--faint); font: 10px var(--mono); text-align: center; }

.cta-section { padding: 30px 0 130px; }
.cta-shell { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 78px 30px 20px; border-top: 0; border-bottom: 0; background: transparent; text-align: center; }
.cta-shell h2 { margin: 0; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.06em; }
.cta-desc { max-width: 600px; margin: 20px auto 0; color: var(--muted); font-size: 16px; }

.site-footer { padding: 0 0 27px; border-top: 1px solid var(--line); background: rgba(3, 10, 16, .5); }
.footer-main { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 52px 0 60px; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col h3 { margin-bottom: 8px; color: var(--faint); font: 10px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.footer-col a { color: var(--muted); font-size: 12px; }
.footer-col a:hover, .footer-social a:hover { color: var(--teal); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1.7fr 1fr; gap: 20px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--faint); font: 9px var(--mono); }
.footer-bottom > span:nth-child(2) { text-align: center; }
.footer-social { text-align: right; }
.footer-social a { color: var(--teal); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { padding-top: 125px; }
  .hero-shell, .screener-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-terminal { max-width: 760px; width: 100%; margin: 0 auto; }
  .hero-signals { margin-top: 36px; }
  .feature-block, .feature-block.feature-reverse { gap: 42px; }
  .screener-layout { gap: 45px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 620px); }
  .site-header.scrolled { backdrop-filter: blur(10px); }
  .nav-shell { min-height: 67px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% - 1px); right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line-strong); background: rgba(5, 15, 23, .98); box-shadow: 0 25px 60px rgba(0, 0, 0, .28); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .nav-dropdown { display: grid; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px 10px; text-align: left; }
  .dropdown-menu { position: static; min-width: 0; padding: 0 0 5px 10px; border: 0; box-shadow: none; background: transparent; }
  .dropdown-menu a { padding: 9px 10px; }
  .site-nav .button { margin-top: 8px; }
  .nav-divider { display: none; }
  h1 { font-size: clamp(45px, 13vw, 68px); }
  .hero { min-height: auto; padding: 92px 0 0; }
  .hero-art img { width: auto; max-width: none; height: 100%; transform: translateX(-22%); }
  .hero-art-wash { background: linear-gradient(90deg, rgba(4, 13, 20, .92), rgba(4, 13, 20, .65)), linear-gradient(180deg, rgba(4, 13, 20, .25), var(--bg) 95%); }
  .hero-shell { gap: 22px; }
  h1 { font-size: 46px; }
  .hero-lede { margin-bottom: 20px; font-size: 15px; }
  .hero-signals { display: none; }
  .hero-media { width: 100%; margin: 38px auto 24px; }
  .hero-media-chrome { min-height: 34px; padding: 0 10px; font-size: 8px; }
  .hero-media-caption { right: 16px; bottom: 16px; left: 16px; }
  .hero-media-caption strong { font-size: 21px; }
  .hero-terminal { margin-right: -4px; margin-left: -4px; width: calc(100% + 8px); }
  .terminal-path { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .quote-row { padding: 14px 18px 10px; }
  .quote-row strong { font-size: 20px; }
  .chart-frame { height: 145px; }
  .chart-footer { min-height: 38px; padding: 0 17px; }
  .signal-strip { align-items: flex-start; flex-direction: column; gap: 5px; min-height: 45px; padding: 9px 17px; }
  .signal-strip strong { width: 100%; }
  .signal-score { position: absolute; right: 18px; }
  .ticker-section { gap: 11px; padding: 0 16px; }
  .ticker-note { display: none; }
  .ticker-track { gap: 22px; }
  .ticker-label { font-size: 9px; }
  .section { padding: 90px 0; }
  .section-intro { margin-bottom: 36px; }
  .feature-block, .feature-block.feature-reverse { grid-template-columns: 1fr; gap: 30px; min-height: 0; margin-bottom: 80px; padding: 0; }
  .feature-block.feature-reverse > .feature-text, .feature-block.feature-reverse > :not(.feature-text) { order: initial; }
  .feature-text { max-width: none; }
  .feature-title { font-size: 35px; }
  .feature-block .mini-chart-panel { padding: 16px; }
  .feature-block .mini-chart-panel svg { min-height: 150px; }
  .feature-video-window, .feature-video-window video { min-height: 245px; }
  .feature-video-overlay { right: 16px; bottom: 16px; left: 16px; }
  .feature-video-overlay strong { font-size: 22px; }
  .ai-visual-container, .community-visual { min-height: 300px; }
  .ai-visual-container .ai-orbit { right: 22%; }
  .feature-code-window pre { padding: 18px; font-size: 11px; }
  .product-grid, .movers-grid, .stats-grid { grid-template-columns: 1fr; }
  .product-card, .product-card-large { min-height: 0; }
  .product-card-large { grid-column: auto; display: block; }
  .mini-chart-panel { margin-top: 30px; }
  .code-window { position: static; margin-top: 28px; }
  .ai-card h3 { margin-top: 85px; }
  .screener-window { width: calc(100vw - 32px); }
  .section-intro-row { align-items: flex-start; flex-direction: column; }
  .stats-grid { border-bottom: 0; }
  .stat-item, .stat-item:not(:first-child) { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .cta-shell { align-items: center; flex-direction: column; padding: 46px 26px; text-align: center; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; padding: 42px 0; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
  .footer-bottom > span:nth-child(2), .footer-social { text-align: left; }
}

@media (max-width: 400px) {
  .shell { width: calc(100% - 28px); }
  .nav-shell { min-height: 62px; }
  .brand { gap: 8px; font-size: 13px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 23px; height: 20px; }
  .brand-mark i { width: 5px; }
  .hero { padding-top: 84px; }
  h1 { font-size: 42px; letter-spacing: -.045em; }
  .hero-actions { gap: 8px; }
  .hero-actions .button { min-height: 43px; padding-right: 14px; padding-left: 14px; }
  .hero-footnote { font-size: 9px; }
  .hero-terminal { margin-right: -3px; margin-left: -3px; width: calc(100% + 6px); }
  .terminal-topbar { padding-right: 10px; padding-left: 10px; font-size: 9px; }
  .terminal-path { margin-left: 9px; }
  .terminal-state { font-size: 9px; }
  .quote-row { padding-right: 14px; padding-left: 14px; }
  .chart-frame { padding-right: 11px; padding-left: 12px; }
  .chart-guides { right: 11px; }
  .chart-tooltip { right: 35px; }
  .chart-footer { padding-right: 12px; padding-left: 12px; font-size: 8px; }
  .chart-legend { gap: 3px; }
  .legend-line { margin-left: 4px; }
  .timeframes { gap: 8px; }
  .timeframe { font-size: 9px; }
  .signal-strip { padding-right: 12px; padding-left: 12px; }
  .signal-label, .signal-score { font-size: 8px; }
  .signal-strip strong { font-size: 10px; line-height: 1.35; }
  .movers-panel { padding-right: 16px; padding-left: 16px; }
  .feature-block, .feature-block.feature-reverse { gap: 24px; margin-bottom: 64px; padding: 0; }
  .feature-title { font-size: 31px; }
  .feature-list { font-size: 12px; }
  .ai-visual-container, .community-visual { min-height: 260px; }
  .community-network { height: 195px; }
  .community-visual .community-quote { font-size: 11px; }
  .mover-row { grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; }
  .mover-info { min-width: 0; gap: 7px; }
  .mover-name { font-size: 11px; }
  .mover-price, .mover-change { font-size: 10px; }
  .window-bar, .window-footer { flex-wrap: wrap; gap: 6px 12px; padding-right: 12px; padding-left: 12px; }
  th, td { padding-right: 12px; padding-left: 12px; }
  .community-head { flex-direction: column; gap: 9px; }
  .footer-main { gap: 28px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
