:root {
  color-scheme: dark;
  --bg: #07090b;
  --bg-elevated: #0d1115;
  --surface: rgba(18, 22, 27, .72);
  --surface-solid: #11161b;
  --surface-2: #171d23;
  --surface-3: #20272e;
  --text: #f5f7f8;
  --muted: #9aa5ae;
  --subtle: #67737d;
  --border: rgba(255,255,255,.095);
  --border-strong: rgba(255,255,255,.17);
  --accent: #d8ff3e;
  --accent-rgb: 216,255,62;
  --accent-2: #8ef1d0;
  --danger: #ff667c;
  --warning: #ffba52;
  --positive: #5ce3a6;
  --negative: #ff667c;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1340px;
  --header-h: 82px;
  --font: Vazirmatn, IRANSansX, "Segoe UI", Tahoma, Arial, sans-serif;
  --font-latin: Inter, "Segoe UI", Arial, sans-serif;
}

:root[data-theme="aurora"] {
  --bg: #07100f;
  --bg-elevated: #0b1715;
  --surface: rgba(13, 29, 26, .76);
  --surface-solid: #0e1c19;
  --surface-2: #132723;
  --surface-3: #18352f;
  --accent: #72f5c6;
  --accent-rgb: 114,245,198;
  --accent-2: #70b7ff;
  --border: rgba(168,255,226,.11);
  --border-strong: rgba(168,255,226,.2);
}

:root[data-theme="ivory"] {
  color-scheme: light;
  --bg: #f1f0eb;
  --bg-elevated: #f8f7f2;
  --surface: rgba(255,255,255,.74);
  --surface-solid: #fffefa;
  --surface-2: #ebeae4;
  --surface-3: #deddd6;
  --text: #141716;
  --muted: #5f6864;
  --subtle: #7c8580;
  --border: rgba(15,20,18,.1);
  --border-strong: rgba(15,20,18,.18);
  --accent: #507900;
  --accent-rgb: 80,121,0;
  --accent-2: #00846f;
  --danger: #c7304a;
  --positive: #087d54;
  --negative: #c7304a;
  --warning: #a96100;
  --shadow: 0 24px 80px rgba(20,30,24,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -10%, rgba(var(--accent-rgb), .08), transparent 30rem),
    radial-gradient(circle at 95% 12%, rgba(96, 123, 255, .07), transparent 28rem),
    var(--bg);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }
img, svg { display: block; }
::selection { color: #071006; background: var(--accent); }
:focus-visible { outline: 3px solid rgba(var(--accent-rgb), .55); outline-offset: 3px; }
[hidden] { display: none !important; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; right: 20px; z-index: 9999; background: var(--accent); color: #071006; padding: 10px 16px; border-radius: 0 0 10px 10px; font-weight: 800; }
.skip-link:focus { top: 0; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.noise { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .025; 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='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, height .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { height: 70px; background: color-mix(in srgb, var(--bg) 82%, transparent); border-color: var(--border); backdrop-filter: blur(22px); }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 236px; }
.brand img { width: 66px; height: 66px; flex: 0 0 66px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(238,106,72,.62), 0 0 34px rgba(255,74,29,.28), 0 16px 38px rgba(0,0,0,.42); transition: width .3s ease, height .3s ease, flex-basis .3s ease, box-shadow .3s ease; }
.site-header.scrolled .brand img { width: 52px; height: 52px; flex-basis: 52px; box-shadow: 0 0 0 1px rgba(238,106,72,.5), 0 0 24px rgba(255,74,29,.2), 0 12px 28px rgba(0,0,0,.34); }
.brand span { display: grid; line-height: 1.2; }
.brand b { font-family: var(--font-latin); font-size: 16px; letter-spacing: .14em; }
.brand small { color: var(--muted); margin-top: 5px; font-size: 10px; letter-spacing: .05em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 8px 11px; border-radius: 11px; color: var(--muted); font-size: 13px; font-weight: 650; transition: .2s ease; }
.nav-link .icon { width: 17px; height: 17px; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface); }
.nav-link.active { box-shadow: inset 0 0 0 1px var(--border); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; color: var(--muted); background: var(--surface); transition: .2s ease; }
.icon-btn:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-1px); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; min-height: 43px; padding: 8px 15px; color: #0b1006; background: var(--accent); border-radius: 12px; font-weight: 850; font-size: 13px; box-shadow: 0 10px 28px rgba(var(--accent-rgb), .13); }
.header-cta .icon { width: 17px; height: 17px; }
.mobile-only { display: none; }

#app-main { min-height: calc(100vh - 300px); padding-top: var(--header-h); }
.route { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { margin: 150px 0; }
.compact-section { margin-top: 70px; }
.section-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--accent); font-family: var(--font-latin), var(--font); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker span { width: 28px; height: 1px; background: currentColor; }
.section-kicker.light { color: rgba(6,12,8,.72); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.35; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--accent); font-style: normal; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-head h2 { margin: 0; font-size: clamp(30px, 4vw, 54px); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 11px 20px; border-radius: 14px; font-weight: 800; font-size: 14px; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #081007; background: var(--accent); box-shadow: 0 14px 34px rgba(var(--accent-rgb), .15); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(var(--accent-rgb), .23); }
.btn-ghost { color: var(--text); background: var(--surface); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-strong); }
.btn-light { color: #091008; background: #f8fff2; }
.btn-outline-light { color: #0a100a; border: 1px solid rgba(5,10,7,.25); background: rgba(255,255,255,.18); }
.btn.full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 800; }
.text-link .icon { width: 17px; }
.text-link:hover { color: var(--accent); }
.chip { min-height: 38px; padding: 7px 13px; color: var(--muted); background: transparent; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; font-weight: 700; transition: .2s ease; }
.chip:hover, .chip.active { color: #081007; background: var(--accent); border-color: var(--accent); }

.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, .92fr); align-items: center; gap: 72px; padding: 70px 0 80px; isolation: isolate; }
.hero-copy { position: relative; z-index: 2; }
.hero-brand-lockup { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.hero-brand-emblem { position: relative; width: 132px; height: 132px; flex: 0 0 132px; padding: 5px; border: 1px solid rgba(238,106,72,.48); border-radius: 50%; background: radial-gradient(circle at 50% 45%, rgba(255,87,36,.15), rgba(7,9,11,.76) 68%); box-shadow: 0 0 0 8px rgba(255,88,35,.035), 0 0 58px rgba(255,74,29,.2), 0 28px 65px rgba(0,0,0,.5); isolation: isolate; }
.hero-brand-emblem::before { content: ''; position: absolute; inset: -12px; z-index: -1; border: 1px solid rgba(216,255,62,.08); border-radius: 50%; animation: brandPulse 3.8s ease-in-out infinite; }
.hero-brand-emblem img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.hero-brand-info { display: grid; justify-items: start; gap: 10px; }
.hero-brand-info small { color: var(--subtle); font-family: var(--font-latin); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.hero-badge { display: inline-flex; align-items: center; gap: 0; margin-bottom: 0; border: 1px solid var(--border-strong); border-radius: 999px; overflow: hidden; background: var(--surface); backdrop-filter: blur(12px); }
.hero-badge span, .hero-badge b { padding: 7px 12px; font-size: 10px; font-family: var(--font-latin); letter-spacing: .12em; }
.hero-badge span { color: #071006; background: var(--accent); font-weight: 900; }
.hero-badge b { color: var(--muted); font-weight: 700; }
.hero h1 { max-width: 770px; margin-bottom: 24px; font-size: clamp(50px, 6.3vw, 94px); font-weight: 900; line-height: 1.12; }
.hero p { max-width: 670px; color: var(--muted); font-size: clamp(16px, 1.55vw, 20px); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px; }
.hero-proof > div { display: grid; gap: 3px; min-width: 145px; padding: 0 18px; border-right: 1px solid var(--border); }
.hero-proof > div:first-child { padding-right: 0; border-right: 0; }
.hero-proof strong { font-size: 13px; }
.hero-proof span { color: var(--subtle); font-size: 11px; }
.hero-orbit { position: absolute; inset: 0 -8vw 0 auto; z-index: -1; width: 70%; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(10px); }
.orb-a { width: 540px; height: 540px; top: 4%; left: 14%; border: 1px solid rgba(var(--accent-rgb), .17); box-shadow: inset 0 0 120px rgba(var(--accent-rgb), .035), 0 0 130px rgba(var(--accent-rgb), .05); }
.orb-b { width: 360px; height: 360px; top: 16%; left: 27%; border: 1px dashed rgba(var(--accent-rgb), .14); animation: spin 30s linear infinite; }
.grid-glow { position: absolute; width: 700px; height: 620px; top: 0; left: 0; opacity: .15; transform: perspective(700px) rotateX(65deg) rotateZ(-11deg); background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 55px 55px; mask-image: radial-gradient(circle, black 0, transparent 68%); }
.hero-terminal { position: relative; z-index: 2; overflow: hidden; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 90%, transparent), color-mix(in srgb, var(--surface) 70%, transparent)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(24px); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.terminal-top, .terminal-foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 19px; border-bottom: 1px solid var(--border); color: var(--muted); font-family: var(--font-latin); font-size: 10px; letter-spacing: .1em; }
.terminal-dots { display: flex; gap: 5px; }
.terminal-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--surface-3); }
.terminal-dots i:first-child { background: var(--danger); }.terminal-dots i:nth-child(2) { background: var(--warning); }.terminal-dots i:last-child { background: var(--positive); }
.live-badge { display: inline-flex; align-items: center; gap: 7px; min-height: 26px; padding: 4px 8px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 0 4px rgba(255,186,82,.1); }
.live-badge[data-status="live"] i { background: var(--positive); box-shadow: 0 0 0 4px rgba(92,227,166,.1); animation: pulse 1.8s infinite; }
.live-badge[data-status="offline"] i { background: var(--negative); box-shadow: none; }
.terminal-chart { height: 245px; padding: 18px 10px 2px; }
.terminal-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-grid { fill: none; stroke: var(--border); stroke-width: 1; vector-effect: non-scaling-stroke; }
.terminal-chart [data-line] { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), .35)); }
.terminal-market-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }
.market-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 14px 17px; border-bottom: 1px solid var(--border); }
.market-row:nth-child(odd) { border-left: 1px solid var(--border); }
.market-row div { display: grid; grid-row: span 2; }
.market-row span { font-family: var(--font-latin); font-size: 12px; font-weight: 800; }
.market-row small { color: var(--subtle); font-size: 9px; }
.market-row strong { font-family: var(--font-latin); font-size: 12px; text-align: left; }
.market-row em { font-family: var(--font-latin); font-size: 10px; font-style: normal; text-align: left; }
.positive { color: var(--positive) !important; }.negative { color: var(--negative) !important; }
.terminal-foot { border-bottom: 0; border-top: 1px solid var(--border); font-family: var(--font); letter-spacing: 0; }
.terminal-foot a { display: inline-flex; align-items: center; gap: 7px; color: var(--text); font-weight: 750; }
.terminal-foot .icon { width: 15px; }
.ticker-band { width: 100vw; margin-right: calc((100% - 100vw)/2); overflow: hidden; border-block: 1px solid var(--border); background: var(--surface); transform: rotate(-1.2deg); }
.ticker-band div { display: flex; align-items: center; width: max-content; gap: 30px; padding: 14px 0; animation: marquee 28s linear infinite; }
.ticker-band span { color: var(--muted); font-family: var(--font-latin); font-size: 10px; font-weight: 800; letter-spacing: .13em; white-space: nowrap; }
.ticker-band i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.split-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.section-copy { position: sticky; top: 110px; }
.section-copy h2 { margin-bottom: 24px; font-size: clamp(38px, 4.5vw, 62px); }
.section-copy p { color: var(--muted); font-size: 16px; }
.playbook-grid { display: grid; gap: 14px; }
.playbook-card { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 27px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(130deg, var(--surface), transparent); transition: .25s ease; }
.playbook-card:hover { transform: translateX(-5px); border-color: var(--border-strong); background: var(--surface); }
.playbook-card > span { color: var(--accent); font-family: var(--font-latin); font-size: 28px; font-weight: 300; }
.playbook-card small { color: var(--accent); font-size: 11px; font-weight: 800; }
.playbook-card h3 { margin: 8px 0 10px; font-size: 22px; }
.playbook-card p { margin-bottom: 14px; color: var(--muted); }
.playbook-card b { color: var(--subtle); font-size: 11px; }
.lesson-feature-grid, .academy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.lesson-card, .academy-card { position: relative; overflow: hidden; padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.lesson-card:hover, .academy-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.lesson-index { position: absolute; top: -22px; left: 15px; color: rgba(var(--accent-rgb), .07); font-family: var(--font-latin); font-size: 110px; font-weight: 900; line-height: 1; }
.lesson-meta, .academy-card-top { position: relative; z-index: 1; display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; }
.lesson-meta span, .academy-card-top span { display: inline-flex; align-items: center; gap: 5px; }
.lesson-meta .icon, .academy-card-top .icon { width: 14px; }
.lesson-card h3 { position: relative; z-index: 1; margin: 50px 0 13px; font-size: 24px; }
.lesson-card p, .academy-card p { color: var(--muted); }
.card-action { display: inline-flex; align-items: center; gap: 8px; padding: 0; color: var(--text); background: transparent; font-weight: 800; }
.card-action:hover { color: var(--accent); }
.card-action .icon { width: 16px; }
.partner-cta { position: relative; min-height: 420px; overflow: hidden; display: flex; align-items: center; padding: 65px; color: #081007; background: var(--accent); border-radius: 36px; }
.partner-copy { position: relative; z-index: 2; max-width: 650px; }
.partner-copy h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 65px); }
.partner-copy p { max-width: 580px; color: rgba(6,13,8,.72); font-size: 16px; }
.partner-art { position: absolute; inset: 0 0 0 auto; width: 58%; display: flex; align-items: center; justify-content: center; gap: 0; transform: rotate(-16deg) translate(8%, 10%); opacity: .13; }
.partner-art span { font-family: var(--font-latin); font-size: clamp(100px, 14vw, 230px); font-weight: 900; letter-spacing: -.18em; }
.trust-strip, .risk-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.trust-strip > div, .risk-banner > div { display: flex; align-items: center; gap: 18px; }
.trust-icon, .risk-banner > div > .icon { display: grid; place-items: center; width: 50px; height: 50px; color: var(--accent); background: rgba(var(--accent-rgb), .08); border-radius: 15px; }
.trust-strip p, .risk-banner p { margin: 2px 0 0; color: var(--muted); }
.trust-strip > a { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; white-space: nowrap; }

.page-intro { max-width: 960px; padding: 120px 0 35px; }
.page-intro h1 { margin-bottom: 24px; font-size: clamp(48px, 7vw, 86px); }
.page-intro p { max-width: 760px; color: var(--muted); font-size: 18px; }
.signal-system-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.system-card { position: relative; min-height: 430px; overflow: hidden; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(155deg, var(--surface-solid), var(--surface)); }
.system-number { position: absolute; top: -20px; left: 12px; color: rgba(var(--accent-rgb), .065); font-family: var(--font-latin); font-size: 130px; font-weight: 900; }
.system-icon { position: relative; display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 65px; color: var(--accent); border: 1px solid rgba(var(--accent-rgb), .2); border-radius: 18px; background: rgba(var(--accent-rgb), .06); }
.system-icon .icon { width: 30px; height: 30px; }
.system-card small { color: var(--accent); font-weight: 800; }
.system-card h2 { margin: 10px 0 16px; font-size: 27px; }
.system-card p { color: var(--muted); }
.system-tag { position: absolute; inset: auto 30px 25px; display: flex; align-items: center; gap: 8px; color: var(--subtle); font-size: 12px; font-weight: 700; }
.system-tag .icon { width: 16px; color: var(--positive); }
.feed-status { margin-bottom: 16px; }
.telegram-feed { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.telegram-card { display: flex; flex-direction: column; min-height: 280px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.telegram-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; color: var(--subtle); font-size: 11px; }
.telegram-card-head span { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-family: var(--font-latin); font-weight: 750; }
.telegram-card-head .icon { width: 15px; }
.telegram-card p { flex: 1; color: var(--muted); line-height: 1.95; }
.telegram-card a { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; }
.telegram-card a .icon { width: 15px; }
.source-note { padding: 16px 19px; color: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-size: 12px; }
.telegram-feed + .source-note { margin-top: 14px; }
.risk-banner { margin-top: 50px; }
.risk-banner > div > .icon { flex: 0 0 auto; padding: 13px; }

.market-toolbar { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding: 12px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.search-box { flex: 1; display: flex; align-items: center; gap: 9px; min-width: 240px; padding: 0 12px; }
.search-box .icon { color: var(--subtle); }
.search-box input { width: 100%; height: 42px; border: 0; outline: 0; background: transparent; }
.search-box input::placeholder { color: var(--subtle); }
.toolbar-actions { display: flex; gap: 7px; }
.market-layout { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(360px,.75fr); gap: 16px; align-items: start; }
.market-table-wrap { overflow: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.market-table { width: 100%; min-width: 780px; border-collapse: collapse; font-family: var(--font-latin), var(--font); font-size: 12px; }
.market-table th { padding: 15px 18px; color: var(--subtle); border-bottom: 1px solid var(--border); text-align: right; font-weight: 650; }
.market-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.market-table tbody tr { cursor: pointer; transition: background .2s ease; }
.market-table tbody tr:hover { background: rgba(var(--accent-rgb), .035); }
.market-table tbody tr:last-child td { border-bottom: 0; }
.coin-cell { display: flex; align-items: center; gap: 11px; }
.coin-avatar { display: grid; place-items: center; width: 34px; height: 34px; color: #071006; background: var(--accent); border-radius: 50%; font-weight: 900; }
.coin-cell div { display: grid; }
.coin-cell small { color: var(--subtle); font-size: 10px; }
.market-change { display: inline-flex; min-width: 64px; justify-content: center; padding: 4px 7px; border-radius: 7px; background: currentColor; }
.market-change::first-line { color: var(--bg); }
.market-change.positive { background: rgba(92,227,166,.1); }.market-change.negative { background: rgba(255,102,124,.1); }
.market-panel { position: sticky; top: 90px; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.panel-head small { color: var(--subtle); }.panel-head h3 { margin: 3px 0 0; font-family: var(--font-latin); font-size: 21px; }
.panel-head select, .form-grid select { height: 38px; padding: 0 10px; color: var(--text); border: 1px solid var(--border); border-radius: 10px; outline: 0; background: var(--surface-2); }
.chart-shell { height: 315px; margin: 18px -5px 5px; }
.chart-loading, .chart-error { height: 100%; display: grid; place-items: center; color: var(--subtle); }
.chart-error { align-content: center; gap: 10px; }.chart-error .icon { color: var(--warning); }.chart-error button { color: var(--accent); background: transparent; font-weight: 800; }
.live-chart { width: 100%; height: 100%; color: var(--positive); overflow: visible; }
.live-chart.falling { color: var(--negative); }
.live-chart .chart-line { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 5px currentColor); }
.live-chart .chart-area { fill: url(#chartArea); stroke: none; }
.live-chart circle { fill: var(--bg); stroke: currentColor; stroke-width: 3; }
.chart-foot { display: flex; justify-content: space-between; color: var(--subtle); font-size: 10px; }

.academy-progress { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 20px; padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.academy-progress > div { display: flex; align-items: center; gap: 20px; }
.progress-ring { --progress: 0; display: grid; place-items: center; width: 82px; height: 82px; border-radius: 50%; background: conic-gradient(var(--accent) calc(var(--progress) * 1%), var(--surface-3) 0); position: relative; }
.progress-ring::after { content: ''; position: absolute; inset: 7px; border-radius: inherit; background: var(--surface-solid); }
.progress-ring b { position: relative; z-index: 1; font-family: var(--font-latin); font-size: 15px; }
.academy-progress small { color: var(--accent); font-weight: 800; }.academy-progress h3 { margin: 2px 0; font-size: 22px; }.academy-progress p { margin: 0; color: var(--muted); }
.lesson-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 18px; }
.academy-card { min-height: 390px; display: flex; flex-direction: column; }
.academy-art { position: relative; height: 130px; display: grid; place-items: center; margin: 23px 0; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: radial-gradient(circle at 50%, rgba(var(--accent-rgb),.12), transparent 55%), var(--surface-2); }
.academy-art span { position: relative; z-index: 1; color: var(--accent); font-family: var(--font-latin); font-size: 50px; font-weight: 300; }
.academy-art i { position: absolute; width: 120px; height: 120px; border: 1px dashed rgba(var(--accent-rgb), .28); border-radius: 50%; animation: spin 22s linear infinite; }
.academy-card h2 { font-size: 23px; }.academy-card p { flex: 1; }
.academy-card.completed::after { content: '✓'; position: absolute; top: 16px; left: 16px; display: grid; place-items: center; width: 28px; height: 28px; color: #071006; background: var(--accent); border-radius: 50%; font-weight: 900; }

.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-card { padding: 27px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.tool-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 25px; }
.tool-card-head > span { display: grid; place-items: center; width: 50px; height: 50px; color: var(--accent); background: rgba(var(--accent-rgb), .07); border: 1px solid rgba(var(--accent-rgb), .15); border-radius: 15px; }
.tool-card-head small { color: var(--accent); font-family: var(--font-latin); font-size: 10px; letter-spacing: .1em; }.tool-card-head h2 { margin: 2px 0 0; font-size: 23px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 15px; }
.form-grid.single { grid-template-columns: 1fr; }.form-grid .span-2 { grid-column: span 2; }
.form-grid label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 650; }
.form-grid input, .form-grid select { width: 100%; height: 48px; padding: 0 13px; border: 1px solid var(--border); border-radius: 12px; outline: none; background: var(--surface-2); direction: ltr; text-align: left; font-family: var(--font-latin); }
.form-grid input:focus, .form-grid select:focus { border-color: rgba(var(--accent-rgb), .45); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .07); }
.tool-result { margin-top: 14px; display: grid; gap: 4px; padding: 16px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-2); }
.tool-result small { color: var(--subtle); }.tool-result strong { font-family: var(--font-latin); font-size: 25px; }.tool-result span { color: var(--muted); font-size: 11px; }
.tool-result.success { border-color: rgba(92,227,166,.24); }.tool-result.success strong { color: var(--positive); }.tool-result.error strong { color: var(--negative); }.tool-result.warning strong { color: var(--warning); }

.ai-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 16px; align-items: stretch; }
.ai-sidebar { display: grid; align-content: start; gap: 14px; }
.ai-status, .ai-rule, .suggestion-list { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.ai-status { display: flex; align-items: center; gap: 13px; }
.ai-pulse { width: 13px; height: 13px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 7px rgba(92,227,166,.09); animation: pulse 2s infinite; }
.ai-status div { display: grid; }.ai-status small { color: var(--subtle); }.ai-status strong { font-size: 13px; }
.ai-rule { display: flex; gap: 12px; color: var(--warning); }.ai-rule .icon { margin-top: 2px; }.ai-rule strong { color: var(--text); }.ai-rule p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.suggestion-list { display: grid; gap: 8px; }.suggestion-list small { margin-bottom: 5px; color: var(--subtle); }
.suggestion-list button { padding: 10px 12px; color: var(--muted); border: 1px solid var(--border); border-radius: 10px; background: transparent; text-align: right; transition: .2s ease; }.suggestion-list button:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-2); }
.chat-shell { min-height: 650px; display: grid; grid-template-rows: auto 1fr auto auto; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.chat-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid var(--border); }
.brand-mini { display: flex; align-items: center; gap: 11px; }.brand-mini > span { display: grid; place-items: center; width: 38px; height: 38px; color: #071006; background: var(--accent); border-radius: 11px; font-family: var(--font-latin); font-weight: 900; }.brand-mini-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(238,106,72,.42), 0 8px 22px rgba(0,0,0,.28); }.brand-mini div { display: grid; line-height: 1.2; }.brand-mini strong { font-family: var(--font-latin); font-size: 12px; letter-spacing: .08em; }.brand-mini small { margin-top: 4px; color: var(--subtle); font-size: 9px; }
.online-dot { color: var(--positive); font-family: var(--font-latin); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.chat-messages { min-height: 0; max-height: 550px; overflow-y: auto; padding: 25px; scroll-behavior: smooth; }
.chat-message { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.chat-message.user { flex-direction: row-reverse; }
.message-avatar { display: grid; place-items: center; flex: 0 0 34px; height: 34px; color: #071006; background: var(--accent); border-radius: 10px; font-family: var(--font-latin); font-size: 9px; font-weight: 900; }
.chat-message.user .message-avatar { color: var(--text); background: var(--surface-3); }
.message-bubble { max-width: min(78%, 720px); padding: 14px 17px; border: 1px solid var(--border); border-radius: 16px 16px 16px 4px; background: var(--surface-2); }
.chat-message.user .message-bubble { border-radius: 16px 16px 4px 16px; background: rgba(var(--accent-rgb), .09); }
.message-bubble strong { display: block; margin-bottom: 7px; }.message-bubble p { margin: 0; color: var(--muted); }
.message-sources { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }.message-sources a { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; color: var(--accent); border: 1px solid rgba(var(--accent-rgb),.2); border-radius: 8px; font-size: 10px; }.message-sources .icon { width: 12px; }
.chat-message.typing .message-bubble p::after { content: '•••'; display: inline-block; margin-right: 5px; color: var(--accent); animation: blink 1.2s infinite; }
.chat-form { display: flex; align-items: flex-end; gap: 10px; margin: 0 18px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface-2); }
.chat-form textarea { flex: 1; max-height: 140px; resize: none; border: 0; outline: 0; background: transparent; line-height: 1.7; }
.chat-form textarea::placeholder { color: var(--subtle); }
.send-btn { display: grid; place-items: center; flex: 0 0 42px; height: 42px; color: #071006; background: var(--accent); border-radius: 12px; }.send-btn .icon { transform: rotate(180deg); }
.chat-disclaimer { padding: 10px 20px 15px; color: var(--subtle); font-size: 10px; text-align: center; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-card { display: grid; grid-template-columns: 70px 1fr; gap: 20px; min-height: 260px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.trust-card > span { color: rgba(var(--accent-rgb), .25); font-family: var(--font-latin); font-size: 38px; font-weight: 300; }
.trust-card div > .icon { width: 34px; height: 34px; margin-bottom: 30px; color: var(--accent); }
.trust-card h2 { font-size: 25px; }.trust-card p { color: var(--muted); }
.source-hub { padding: 40px; border: 1px solid var(--border); border-radius: 32px; background: var(--surface); }
.source-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.source-links a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 17px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface-2); transition: .2s ease; }
.source-links a:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.source-links a > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--accent); background: rgba(var(--accent-rgb), .07); border-radius: 12px; }
.source-links a div { display: grid; }.source-links small { color: var(--subtle); }.source-links a > .icon { width: 16px; color: var(--subtle); }
.faq-list { display: grid; gap: 10px; }.faq-list details { border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 20px; cursor: pointer; font-weight: 800; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary .icon { width: 17px; transition: transform .2s ease; }.faq-list details[open] summary .icon { transform: rotate(90deg); }.faq-list p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 40px; align-items: start; }
.legal-nav { position: sticky; top: 95px; display: grid; padding: 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }.legal-nav a { padding: 10px 12px; color: var(--muted); border-radius: 10px; font-size: 13px; }.legal-nav a:hover { color: var(--text); background: var(--surface-2); }
.legal-content { padding: 35px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }.legal-content section { scroll-margin-top: 100px; padding: 25px 0; border-bottom: 1px solid var(--border); }.legal-content section:first-child { padding-top: 0; }.legal-content section:last-child { padding-bottom: 0; border-bottom: 0; }.legal-content h2 { font-size: 24px; }.legal-content p { color: var(--muted); font-size: 15px; line-height: 2.1; }
.not-found { min-height: 70vh; display: grid; place-content: center; justify-items: center; text-align: center; }.not-found-code { color: rgba(var(--accent-rgb), .15); font-family: var(--font-latin); font-size: 180px; font-weight: 900; line-height: 1; }.not-found h1 { font-size: 42px; }.not-found p { color: var(--muted); }

.site-footer { width: min(var(--container), calc(100% - 48px)); margin: 150px auto 0; padding-bottom: 90px; }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: 45px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; align-items: flex-start; gap: 15px; }.footer-brand img { border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(238,106,72,.42), 0 10px 28px rgba(0,0,0,.26); }.footer-brand strong { font-family: var(--font-latin); letter-spacing: .1em; }.footer-brand p { max-width: 330px; margin-top: 8px; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }.footer-links > div { display: grid; align-content: start; gap: 8px; }.footer-links strong { margin-bottom: 7px; }.footer-links a { color: var(--muted); font-size: 13px; }.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: var(--subtle); font-size: 11px; }
.mobile-bottom-nav { display: none; }
.mobile-drawer, .drawer-backdrop { display: none; }

.lesson-dialog, .command-dialog { width: min(760px, calc(100% - 32px)); max-height: min(850px, calc(100vh - 40px)); padding: 0; color: var(--text); border: 1px solid var(--border-strong); border-radius: 26px; background: var(--surface-solid); box-shadow: var(--shadow); }
.lesson-dialog::backdrop, .command-dialog::backdrop { background: rgba(0,0,0,.7); backdrop-filter: blur(8px); }
.lesson-modal-head { position: sticky; top: 0; z-index: 1; display: flex; justify-content: space-between; gap: 20px; padding: 23px 25px; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--surface-solid) 92%, transparent); backdrop-filter: blur(18px); }
.lesson-modal-head span { color: var(--accent); font-size: 11px; font-weight: 800; }.lesson-modal-head h2 { margin: 4px 0 0; font-size: 28px; }
.lesson-modal-body { padding: 25px; }.lesson-modal-body .lead { color: var(--text); font-size: 17px; }.lesson-modal-body section { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-top: 1px solid var(--border); }.lesson-modal-body section span { color: var(--accent); font-family: var(--font-latin); }.lesson-modal-body section p { margin: 0; color: var(--muted); }
.lesson-warning { display: flex; gap: 12px; margin-top: 20px; padding: 14px; color: var(--warning); border: 1px solid rgba(255,186,82,.2); border-radius: 14px; background: rgba(255,186,82,.05); }.lesson-warning p { margin: 0; color: var(--muted); font-size: 12px; }
.lesson-modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 20px 25px; border-top: 1px solid var(--border); }
.command-dialog { width: min(640px, calc(100% - 24px)); margin-top: 13vh; overflow: visible; background: transparent; border: 0; box-shadow: none; }
.command-box { overflow: hidden; border: 1px solid var(--border-strong); border-radius: 20px; background: var(--surface-solid); box-shadow: var(--shadow); }
.command-search { display: flex; align-items: center; gap: 10px; padding: 14px; border-bottom: 1px solid var(--border); }.command-search input { flex: 1; height: 38px; border: 0; outline: 0; background: transparent; }.command-search kbd, .command-results kbd { padding: 3px 7px; color: var(--subtle); border: 1px solid var(--border); border-radius: 6px; background: var(--surface-2); font-family: var(--font-latin); font-size: 9px; }
.command-results { max-height: 420px; overflow-y: auto; padding: 8px; }.command-results button { width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 11px; color: var(--text); border-radius: 12px; background: transparent; text-align: right; }.command-results button:hover { background: var(--surface-2); }.command-results button > span { color: var(--accent); }.command-results button div { display: grid; }.command-results small { color: var(--subtle); }
.toast-stack { position: fixed; z-index: 3000; left: 20px; bottom: 20px; display: grid; gap: 8px; }.toast { display: flex; align-items: center; gap: 9px; min-width: 260px; padding: 12px 14px; opacity: 0; transform: translateY(12px); color: var(--text); border: 1px solid var(--border-strong); border-radius: 13px; background: var(--surface-solid); box-shadow: var(--shadow); transition: .25s ease; }.toast.show { opacity: 1; transform: translateY(0); }.toast .icon { color: var(--positive); }.toast.error .icon { color: var(--negative); }
.empty-state { padding: 35px; color: var(--muted); text-align: center; }.empty-state.wide { grid-column: 1/-1; border: 1px dashed var(--border); border-radius: var(--radius); }.empty-state a { color: var(--accent); font-weight: 800; }
.skeleton { overflow: hidden; }.skeleton-line { height: 11px; margin: 10px 0; border-radius: 999px; background: var(--surface-3); animation: skeleton 1.6s infinite; }.skeleton-line.w-30 { width: 30%; }.skeleton-line.w-80 { width: 80%; }.skeleton-line.w-45 { width: 45%; }
.skeleton-row { opacity: .58; animation: skeleton 1.6s infinite; }
.reveal { opacity: 1; transform: none; }.motion-ready .reveal { animation: revealIn .65s ease both; animation-delay: calc(var(--delay, 0) * 100ms); }.reveal[data-delay="1"] { --delay: 1; }.reveal[data-delay="2"] { --delay: 2; }.reveal.visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes marquee { to { transform: translateX(50%); } }
@keyframes skeleton { 0%,100% { opacity: .45; } 50% { opacity: .8; } }
@keyframes blink { 50% { opacity: .2; } }
@keyframes revealIn { from { opacity: .62; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes brandPulse { 0%,100% { transform: scale(.98); opacity: .35; } 50% { transform: scale(1.05); opacity: .8; } }

@media (max-width: 1180px) {
  .desktop-nav .nav-link:nth-child(6), .desktop-nav .nav-link:nth-child(7) { display: none; }
  .hero { grid-template-columns: 1fr 440px; gap: 35px; }
  .hero h1 { font-size: clamp(48px, 6vw, 72px); }
  .market-layout { grid-template-columns: 1fr; }.market-panel { position: static; }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .site-header { padding-inline: 20px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }.mobile-only { display: inline-grid; }
  .brand { min-width: 0; }.brand img, .site-header.scrolled .brand img { width: 50px; height: 50px; flex-basis: 50px; }.brand b { font-size: 13px; }.brand small { font-size: 9px; }
  .mobile-drawer { position: fixed; inset: 0 0 0 auto; z-index: 2000; display: flex; flex-direction: column; width: min(390px, 88vw); padding: 20px; transform: translateX(110%); color: var(--text); border-left: 1px solid var(--border); background: var(--surface-solid); box-shadow: var(--shadow); transition: transform .3s ease; }.mobile-drawer.open { transform: none; }.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }.mobile-drawer nav { display: grid; gap: 6px; }.mobile-drawer .nav-link { justify-content: flex-start; min-height: 48px; padding: 10px 13px; }.drawer-actions { display: grid; gap: 9px; margin-top: auto; }.drawer-version { margin-top: 18px; color: var(--subtle); text-align: center; font-family: var(--font-latin); }.drawer-backdrop { position: fixed; inset: 0; z-index: 1900; display: block; opacity: 0; visibility: hidden; background: rgba(0,0,0,.64); backdrop-filter: blur(5px); transition: .25s ease; }.drawer-backdrop.show { opacity: 1; visibility: visible; }
  .hero { grid-template-columns: 1fr; padding-top: 72px; }.hero-copy { text-align: center; }.hero-brand-lockup { justify-content: center; }.hero-brand-info { justify-items: center; }.hero p { margin-inline: auto; }.hero-actions, .hero-proof { justify-content: center; }.hero-terminal { max-width: 660px; margin: 0 auto; transform: none; }.hero-orbit { inset: 0; width: 100%; }
  .split-section { grid-template-columns: 1fr; }.section-copy { position: static; }.lesson-feature-grid, .academy-grid, .signal-system-grid, .telegram-feed { grid-template-columns: 1fr 1fr; }
  .partner-cta { padding: 45px; }.partner-art { width: 75%; opacity: .08; }
  .tool-grid { grid-template-columns: 1fr; }.ai-layout { grid-template-columns: 1fr; }.ai-sidebar { grid-template-columns: 1fr 1fr; }.suggestion-list { grid-column: 1/-1; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  body { font-size: 14px; padding-bottom: 70px; }
  .route, .site-footer { width: min(100% - 28px, var(--container)); }
  .site-header { padding-inline: 14px; }.header-actions { gap: 5px; }.header-actions .icon-btn { width: 39px; height: 39px; }.header-actions [data-command-open] { display: none; }
  .brand img, .site-header.scrolled .brand img { width: 48px; height: 48px; flex-basis: 48px; border-radius: 50%; }.brand span { display: none; }
  .section { margin: 95px 0; }.compact-section { margin-top: 45px; }.section-head { align-items: flex-start; flex-direction: column; }.section-head h2 { font-size: 34px; }
  .page-intro { padding-top: 85px; }.page-intro h1 { font-size: 45px; }.page-intro p { font-size: 15px; }
  .hero { min-height: auto; padding: 58px 0 55px; gap: 45px; }.hero-brand-lockup { flex-direction: column; gap: 14px; margin-bottom: 24px; }.hero-brand-emblem { width: 108px; height: 108px; flex-basis: 108px; }.hero-brand-info { gap: 8px; }.hero-brand-info small { font-size: 8px; }.hero h1 { font-size: 47px; }.hero p { font-size: 15px; }.hero-badge b { display: none; }.hero-actions { flex-direction: column; }.hero-actions .btn { width: 100%; }.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; }.hero-proof > div { min-width: 0; padding: 0 8px; border-right: 1px solid var(--border); }.hero-proof > div:first-child { border-right: 1px solid var(--border); }.hero-proof strong { font-size: 11px; }.hero-proof span { font-size: 9px; }
  .hero-terminal { border-radius: 22px; }.terminal-chart { height: 190px; }.terminal-market-list { grid-template-columns: 1fr; }.market-row:nth-child(odd) { border-left: 0; }.terminal-foot { align-items: flex-start; flex-direction: column; }
  .playbook-card { grid-template-columns: 45px 1fr; padding: 20px; }.playbook-card > span { font-size: 22px; }
  .lesson-feature-grid, .academy-grid, .signal-system-grid, .telegram-feed, .trust-grid, .source-links { grid-template-columns: 1fr; }
  .system-card { min-height: 390px; }.system-number { font-size: 105px; }
  .partner-cta { min-height: 460px; padding: 32px 24px; align-items: flex-end; }.partner-copy h2 { font-size: 38px; }.partner-copy .hero-actions { align-items: stretch; }.partner-art { inset: -5% auto auto -10%; width: 130%; height: 50%; }
  .trust-strip, .risk-banner { align-items: flex-start; flex-direction: column; }.trust-strip > a { white-space: normal; }
  .market-toolbar { align-items: stretch; flex-direction: column; }.search-box { min-width: 0; }.toolbar-actions { overflow-x: auto; padding-bottom: 3px; }.market-layout { gap: 12px; }.market-panel { padding: 16px; }.chart-shell { height: 260px; }
  .academy-progress { align-items: flex-start; flex-direction: column; }.academy-progress > div { align-items: flex-start; }.progress-ring { flex: 0 0 auto; width: 70px; height: 70px; }.academy-progress p { font-size: 11px; }
  .form-grid { grid-template-columns: 1fr; }.form-grid .span-2 { grid-column: auto; }.tool-card { padding: 21px 17px; }
  .ai-sidebar { grid-template-columns: 1fr; }.suggestion-list { grid-column: auto; }.chat-shell { min-height: 610px; }.chat-messages { max-height: 470px; padding: 18px 13px; }.message-bubble { max-width: 88%; }.message-avatar { flex-basis: 30px; height: 30px; }.chat-form { margin-inline: 10px; }
  .trust-card { grid-template-columns: 48px 1fr; padding: 22px 18px; }.source-hub { padding: 22px 16px; }.legal-layout { grid-template-columns: 1fr; }.legal-nav { position: static; display: flex; overflow-x: auto; white-space: nowrap; }.legal-content { padding: 23px 17px; }
  .site-footer { margin-top: 95px; padding-bottom: 30px; }.footer-links { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; }
  .mobile-bottom-nav { position: fixed; inset: auto 0 0; z-index: 1200; display: grid; grid-template-columns: repeat(5,1fr); padding: 7px 8px max(7px, env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(20px); }.mobile-bottom-nav a { display: grid; justify-items: center; gap: 2px; padding: 4px; color: var(--subtle); font-size: 9px; }.mobile-bottom-nav a .icon { width: 19px; height: 19px; }.mobile-bottom-nav a.active { color: var(--accent); }
  .lesson-dialog { width: calc(100% - 18px); max-height: calc(100vh - 20px); border-radius: 20px; }.lesson-modal-head { padding: 18px 16px; }.lesson-modal-head h2 { font-size: 22px; }.lesson-modal-body { padding: 18px 16px; }.lesson-modal-foot { align-items: stretch; flex-direction: column; padding: 15px 16px; }.lesson-modal-foot .btn { width: 100%; }
  .toast-stack { left: 10px; right: 10px; bottom: 80px; }.toast { min-width: 0; width: 100%; }
  .not-found-code { font-size: 120px; }
}

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

/* Ourbit knowledge-base live status */
.kb-progress{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem;padding:.9rem;border:1px solid var(--line);border-radius:18px;background:color-mix(in srgb,var(--panel) 86%,transparent)}
.kb-progress>div{display:grid;gap:.18rem;text-align:center;padding:.55rem .3rem;border-radius:12px;background:color-mix(in srgb,var(--surface) 78%,transparent)}
.kb-progress strong{font-size:1rem;letter-spacing:-.02em;color:var(--text)}
.kb-progress span,.kb-progress small{font-size:.68rem;color:var(--muted);line-height:1.7}
.kb-progress>small{grid-column:1/-1;text-align:center;padding-top:.2rem}
@media(max-width:720px){.kb-progress{grid-template-columns:repeat(3,1fr);padding:.7rem;gap:.4rem}.kb-progress strong{font-size:.9rem}.kb-progress span{font-size:.6rem}}
