:root {
  --bg: #07120f;
  --panel: rgba(240, 255, 246, 0.08);
  --panel-strong: rgba(240, 255, 246, 0.13);
  --line: rgba(187, 255, 214, 0.22);
  --text: #effff5;
  --muted: #a8c7b5;
  --green: #45f08a;
  --red: #ff6b6b;
  --amber: #ffd166;
  --cyan: #59d8ff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Aptos Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(69, 240, 138, 0.18), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(89, 216, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #06100d, #081a17 50%, #040807);
  min-height: 100vh;
}
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 42px 0; }
.hero { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: end; margin-bottom: 24px; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 6vw, 5.5rem); line-height: .92; margin: 0 0 18px; max-width: 820px; }
.lede { color: var(--muted); font-size: 1.1rem; max-width: 760px; }
.status-card, .panel, .controls { border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(16px); border-radius: 24px; box-shadow: 0 24px 80px rgba(0,0,0,.24); }
.status-card { padding: 22px; display: flex; gap: 14px; align-items: center; }
.status-card p { margin: 4px 0 0; color: var(--muted); }
.dot { width: 14px; height: 14px; border-radius: 999px; background: var(--amber); box-shadow: 0 0 20px currentColor; }
.dot.ok { background: var(--green); }
.dot.bad { background: var(--red); }
.controls { padding: 18px; display: flex; gap: 14px; align-items: end; margin-bottom: 24px; flex-wrap: wrap; }
label { color: var(--muted); display: grid; gap: 7px; font-weight: 700; }
select, button { border: 1px solid var(--line); background: #071d18; color: var(--text); padding: 12px 14px; border-radius: 14px; font: inherit; min-width: 150px; }
button { cursor: pointer; border-color: transparent; color: #03100b; background: linear-gradient(135deg, var(--green), var(--cyan)); font-weight: 900; }
button.secondary { background: transparent; color: var(--text); border-color: var(--line); }
.grid { display: grid; grid-template-columns: 1fr 310px; gap: 24px; }
.panel { padding: 22px; }
.panel.wide { min-width: 0; }
.panel-head { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
h2 { margin: 0 0 14px; }
.panel p, li { color: var(--muted); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid rgba(187,255,214,.14); text-align: left; white-space: nowrap; }
th { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-weight: 900; }
.badge.BUY { color: #00170c; background: var(--green); }
.badge.SELL { color: #190506; background: var(--red); }
.badge.HOLD { color: #1d1500; background: var(--amber); }
.move.pos { color: var(--green); }
.move.neg { color: var(--red); }
@media (max-width: 860px) { .hero, .grid { grid-template-columns: 1fr; } .panel-head { display: block; } }
