@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
:root{--bg:#05060a;--card:#0b1016;--accent:#00d1ff;--accent-2:#7c3cff;--muted:#9aa8b3}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,Arial;color:#e6f0f6;background:linear-gradient(180deg,#05060a 0%,#07111a 100%);-webkit-font-smoothing:antialiased}
.container{max-width:1200px;margin:48px auto;padding:28px}
header{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:14px}
.brand img{width:56px;height:56px;border-radius:10px;object-fit:cover}
h1{font-size:20px;margin:0}
nav a{color:var(--muted);text-decoration:none;margin-left:18px;font-size:14px}
/* Hero */
.hero{margin-top:40px;padding:48px;border-radius:12px;background:linear-gradient(180deg,rgba(255,255,255,0.01),transparent);border:1px solid rgba(255,255,255,0.03);display:flex;align-items:center;gap:32px}
.hero-left{flex:1}
.kicker{color:var(--accent);font-weight:600;font-size:13px;letter-spacing:0.6px}
.hero-title{font-size:34px;margin:8px 0 10px 0;line-height:1.02}
.hero-sub{color:var(--muted);max-width:560px}
.cta{display:inline-block;margin-top:18px;padding:12px 18px;border-radius:10px;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#021018;font-weight:700;text-decoration:none}
.hero-visual{width:420px;height:280px;border-radius:12px;background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;border:1px solid rgba(255,255,255,0.03)}
.circuit{position:absolute;inset:0;opacity:0.14}
.visual-card{position:relative;z-index:2;width:88%;height:74%;border-radius:10px;background:linear-gradient(135deg,rgba(0,209,255,0.06),rgba(124,60,255,0.04));display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,0.02)}
.visual-card h3{margin:0;color:#eaf8ff}
.visual-card p{color:var(--muted);font-size:13px;margin-top:6px}
/* Stocks table */
.stocks-wrap{max-width:1200px;margin:36px auto;padding:20px}
.stocks-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.stocks-table{width:100%;border-collapse:collapse;background:var(--card);border-radius:10px;overflow:hidden}
.stocks-table thead th{background:linear-gradient(90deg,rgba(255,255,255,0.02),transparent);color:#cfeffd;padding:12px 14px;text-align:left;font-weight:600}
.stocks-table tbody td{padding:12px 14px;color:#dbeef6;border-top:1px solid rgba(255,255,255,0.03)}
.stocks-table tbody tr:hover td{background:rgba(255,255,255,0.01)}
.status-above{color:#7affc9;font-weight:700}
.status-below{color:#ff7a7a;font-weight:700}
.small{color:var(--muted);font-size:13px}
/* responsive */
@media (max-width:900px){.hero{flex-direction:column}.hero-visual{width:100%;height:220px}.container{margin:24px}}
