/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080c18;
  --surface: #0d1225;
  --surface-2: #111a35;
  --border: #1a2545;
  --green: #00ff88;
  --green-dim: #00cc6a;
  --amber: #ffb840;
  --red: #ff5a5a;
  --text: #e8edf5;
  --text-muted: #8896b3;
  --text-dim: #4a5a7a;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
a { color: var(--green); text-decoration: none; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* === SECTION TAG === */
.section-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--green); background: rgba(0,255,136,0.07); border: 1px solid rgba(0,255,136,0.2); padding: 4px 12px; border-radius: 4px; margin-bottom: 24px; }

/* === HERO === */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 100vh; padding: 80px 64px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,255,136,0.04) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.badge { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--green); background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.25); padding: 6px 14px; border-radius: 4px; display: inline-block; margin-bottom: 32px; }
.hero-title { font-family: var(--font-mono); font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.1; color: var(--text); margin-bottom: 24px; }
.hero-lede { font-size: 18px; color: var(--text-muted); max-width: 480px; margin-bottom: 48px; line-height: 1.7; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: var(--green); }
.stat-label { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.hero-visual { position: relative; z-index: 1; }
.hero-img { width: 100%; height: 380px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }
.terminal-overlay { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 16px; }
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-title { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); margin-left: 8px; letter-spacing: 1px; }
.terminal-lines { padding: 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.terminal-line { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; padding: 4px 8px; border-radius: 4px; }
.terminal-line.active { background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); }
.t-time { color: var(--text-dim); min-width: 72px; }
.t-sym { color: var(--text-muted); min-width: 60px; }
.t-price { color: var(--text); min-width: 80px; }
.t-chg.positive { color: var(--green); }
.t-chg.neutral { color: var(--text-muted); }

/* === SIGNAL SECTION === */
.signal { padding: 100px 64px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.signal-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.signal-img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }
.signal-title { font-family: var(--font-mono); font-size: 32px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.signal-body { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.signal-cases { display: flex; flex-direction: column; gap: 16px; }
.case { display: flex; align-items: flex-start; gap: 14px; }
.case-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.case-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(0,255,136,0.5); }
.case-dot.amber { background: var(--amber); box-shadow: 0 0 8px rgba(255,184,64,0.5); }
.case-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(255,90,90,0.5); }
.case-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.case-text strong { color: var(--text); }

/* === FEATURES === */
.features { padding: 100px 64px; }
.features-title { font-family: var(--font-mono); font-size: clamp(28px, 3vw, 40px); font-weight: 700; margin-bottom: 64px; max-width: 600px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.feature:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-name { font-family: var(--font-mono); font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === POSITION === */
.position { padding: 100px 64px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.position-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.position-title { font-family: var(--font-mono); font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 20px; }
.position-body { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.position-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.p-item { background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; }
.p-label { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.p-value { font-size: 13px; font-weight: 500; }
.p-value.green { color: var(--green); }
.p-value.amber { color: var(--amber); }
.p-value.red { color: var(--red); }
.position-img { width: 100%; height: 340px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }

/* === CLOSING === */
.closing { padding: 120px 64px; text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-title { font-family: var(--font-mono); font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.closing-body { color: var(--text-muted); font-size: 18px; line-height: 1.8; margin-bottom: 40px; }
.closing-tagline { font-family: var(--font-mono); font-size: 16px; color: var(--green); letter-spacing: 1px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }

/* === FOOTER === */
.footer { padding: 40px 64px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: var(--text); }
.logo-accent { color: var(--green); }
.footer-tagline { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.footer-meta { font-size: 12px; color: var(--text-dim); display: flex; gap: 24px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px; gap: 40px; }
  .hero-stats { gap: 16px; }
  .signal-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .position-inner { grid-template-columns: 1fr; }
  .position-visual { order: -1; }
  .features, .signal, .position, .closing { padding: 60px 32px; }
  .footer { flex-direction: column; gap: 16px; padding: 32px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .position-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
}