/* ═══════════════════════════════════════════
   MINESIX.IO — Landing Page Styles
═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(168,85,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-sub strong { color: var(--text-primary); }

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-purple);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Flow Diagram ── */
.flow-diagram {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  padding: 0 24px;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 140px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.flow-node:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-4px);
}

.node-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168,85,247,0.1);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
}
.node-icon svg { width: 24px; height: 24px; }

.node-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.node-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.node-ai {
  border-color: rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.05);
}
.ai-icon { position: relative; overflow: visible !important; background: transparent !important; }
.ai-rings {
  position: absolute;
  inset: -8px;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.3);
  animation: ringPulse 2.5s ease-in-out infinite;
}
.r1 { inset: 0; animation-delay: 0s; }
.r2 { inset: -6px; animation-delay: 0.5s; border-color: rgba(0,212,255,0.2); }
.r3 { inset: -14px; animation-delay: 1s; border-color: rgba(168,85,247,0.1); }

.ai-agents {
  display: flex; gap: 6px;
}
.agent-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  color: #fff;
  cursor: default;
  animation: agentGlow 3s ease-in-out infinite;
}
.agent-dot:nth-child(2) { animation-delay: 0.3s; }
.agent-dot:nth-child(3) { animation-delay: 0.6s; }

.flow-arrow {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 8px;
}
.flow-line {
  width: 60px;
  height: 2px;
  background: rgba(168,85,247,0.2);
  position: relative;
  overflow: hidden;
}
.flow-pulse {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-cyan), transparent);
  animation: flowPulse 2s linear infinite;
}
.arrow-head {
  width: 20px; height: 20px;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--accent-purple));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Comparison ── */
.comparison-section { background: var(--bg-surface); }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.comp-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.comp-bad { border-color: rgba(239,68,68,0.15); }
.comp-good {
  border-color: rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.04);
  box-shadow: var(--shadow-glow-purple);
}

.comp-header {
  margin-bottom: 28px;
}
.comp-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.comp-icon.bad { background: rgba(239,68,68,0.1); color: var(--accent-red); }
.comp-icon.good { background: rgba(168,85,247,0.15); color: var(--accent-purple); }

.comp-header h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.comp-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.comp-badge.bad { background: rgba(239,68,68,0.1); color: var(--accent-red); }
.comp-badge.good { background: rgba(168,85,247,0.15); color: var(--accent-purple); }

.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.comp-list .x { color: var(--accent-red); font-weight: 700; flex-shrink: 0; }
.comp-list .check { color: var(--accent-purple); font-weight: 700; flex-shrink: 0; }

.comp-vs {
  padding: 0 32px;
  flex-shrink: 0;
}
.vs-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.step-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}
.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: rgba(168,85,247,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

.step-connector { padding: 0 12px; }
.connector-line {
  width: 40px; height: 2px;
  background: rgba(168,85,247,0.2);
  position: relative; overflow: hidden;
}
.connector-pulse {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
  animation: flowPulse 1.8s linear infinite;
}

/* ── Features ── */
.features-section { background: var(--bg-surface); }

/* Legacy grid — kept for backward compat */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Features Bento Grid ── */
.features-bento {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fb-row {
  display: flex;
  gap: 16px;
}

/* Row 1 — Hero 3 */
.fb-row-top { align-items: stretch; }
.fb-hero { flex: 1.2; }
.fb-medium { flex: 1; }

/* Row 2 — Wide analytics + self-learning */
.fb-row-mid { align-items: stretch; }
.fb-wide { flex: 1.6; }
.fb-row-mid .fb-medium { flex: 1; }

/* Row 3 — 4 small utility tiles */
.fb-row-bottom { align-items: stretch; }
.fb-utility { flex: 1; min-width: 0; }

/* Card base */
.fb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.fb-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(168,85,247,0.1);
}

/* Hero card top accent */
.fb-purple { border-top: 2px solid rgba(168,85,247,0.5); }

/* Icons */
.fb-icon {
  width: 48px; height: 48px;
  background: rgba(168,85,247,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.fb-icon-amber { background: rgba(245,158,11,0.1); }
.fb-icon-cyan  { background: rgba(0,212,255,0.1); }
.fb-icon-green { background: rgba(48,209,88,0.1); }

.fb-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 6px;
}
.fb-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
.fb-card p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

/* 5 agent chips */
.fb-agents-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.fba-chip {
  font-size: 0.62rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid;
}
.fba-quant       { color: #A855F7; background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.25); }
.fba-fundamental { color: #F59E0B; background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); }
.fba-social      { color: #EC4899; background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.25); }
.fba-market      { color: #00D4FF; background: rgba(0,212,255,0.1);  border-color: rgba(0,212,255,0.25); }
.fba-risk        { color: #30d158; background: rgba(48,209,88,0.1);  border-color: rgba(48,209,88,0.25); }

/* Vote bar */
.fb-vote-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(48,209,88,0.06);
  border: 1px solid rgba(48,209,88,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 14px;
}
.fbvb-dots { display: flex; gap: 5px; }
.fbvb-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.fbvb-dot.on { background: #30d158; border-color: #30d158; box-shadow: 0 0 6px rgba(48,209,88,0.5); animation: avrPulse 2s ease-in-out infinite; }
.fbvb-label { font-size: 0.65rem; font-weight: 700; color: #30d158; }

/* AI Trailing mini widget */
.fb-trail-mini {
  margin-top: 16px;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 12px;
  padding: 12px 16px;
}
.fbtm-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.fbtm-key { font-size: 0.65rem; color: var(--text-muted); }
.fbtm-val { font-size: 0.88rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.fbtm-green { color: #10B981; }
.fbtm-purple { color: #A855F7; }
.fbtm-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
  color: #F59E0B; background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25); border-radius: 6px;
  padding: 4px 10px; text-align: center;
  margin-top: 4px;
}

/* Market intel chips */
.fb-intel-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.fbi-chip {
  font-size: 0.62rem; font-weight: 600;
  padding: 5px 10px; border-radius: 20px; border: 1px solid;
}
.fbi-bull  { color: #30d158; background: rgba(48,209,88,0.08);  border-color: rgba(48,209,88,0.2); }
.fbi-warn  { color: #EF4444; background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.2); }
.fbi-news  { color: #00D4FF; background: rgba(0,212,255,0.08);  border-color: rgba(0,212,255,0.2); }
.fbi-sent  { color: #A855F7; background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.2); }

/* Wide card layout */
.fb-wide-content { display: flex; gap: 28px; align-items: flex-start; }
.fb-wide-left { flex: 1; min-width: 0; }
.fb-wide-right { flex: 0 0 260px; }
.fb-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.fbs-item { text-align: center; }
.fbs-val { font-size: 1rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--text-primary); }
.fbs-lbl { font-size: 0.6rem; color: var(--text-muted); margin-top: 2px; }
.ap-green { color: #10B981; }
.ap-red   { color: #EF4444; }

/* Utility card */
.fb-utility { display: flex; align-items: flex-start; gap: 14px; padding: 22px 20px; }
.fb-u-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.fb-u-body h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.fb-u-body p  { font-size: 0.76rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .fb-row-top, .fb-row-mid { flex-direction: column; }
  .fb-wide-content { flex-direction: column; }
  .fb-wide-right { flex: none; width: 100%; }
  .fb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fb-row-bottom { flex-wrap: wrap; }
  .fb-utility { flex: 0 0 calc(50% - 8px); }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.feat-large {
  grid-column: span 2;
}
.feat-right {
  grid-column: 2 / span 2;
}

.feat-glow {
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.feat-glow-right {
  left: auto; right: -40px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}

.feat-icon {
  width: 52px; height: 52px;
  background: rgba(168,85,247,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

.feat-agents-preview {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.agent-chip {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.2);
  color: var(--accent-purple);
}
.agent-chip.sentiment { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.2); color: var(--accent-cyan); }
.agent-chip.risk { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); color: var(--accent-green); }

.mini-chart {
  margin-top: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.mini-chart svg { width: 100%; height: 64px; display: block; }
.chart-label {
  position: absolute;
  bottom: 8px; right: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-purple);
}

/* ── Pricing ── */
.pricing-section { }

/* Free Trial Banner */
.free-trial-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(168,85,247,0.06));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ftb-left { flex: 1; min-width: 220px; }
.ftb-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.ftb-title { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.ftb-desc { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.5; }
.ftb-features {
  flex: 1; min-width: 200px;
  display: flex; flex-direction: column; gap: 8px;
}
.ftb-feat { font-size: 0.83rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.ftb-feat .check { color: var(--accent-cyan); font-weight: 700; }
.ftb-action { flex-shrink: 0; text-align: center; }
.ftb-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; }

/* Billing Toggle */
.billing-toggle-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 36px;
}
.btw-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.btw-label.btw-active { color: var(--text-primary); font-weight: 600; }
.billing-toggle {
  width: 48px; height: 26px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.billing-toggle.active { background: rgba(168,85,247,0.3); border-color: var(--accent-purple); }
.bt-knob {
  width: 18px; height: 18px;
  background: var(--text-muted);
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 3px;
  transition: transform 0.3s, background 0.3s;
}
.billing-toggle.active .bt-knob { transform: translateX(22px); background: var(--accent-purple); }
.btw-badge {
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--accent-purple);
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.05em;
}

/* Pricing Grid - 4 columns */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 52px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--border-glow); }

.plan-featured {
  border-color: rgba(168,85,247,0.4);
  background: rgba(168,85,247,0.04);
  box-shadow: var(--shadow-glow-purple), 0 0 0 1px rgba(168,85,247,0.2);
}

.plan-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-basic {
  border-color: rgba(255,255,255,0.1);
  opacity: 0.88;
}
.pricing-card-basic:hover { opacity: 1; }

.plan-badge-basic {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.price-currency {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
  min-height: 56px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}
.plan-features .check { color: var(--accent-purple); font-weight: 700; flex-shrink: 0; }
.plan-features .x-feat { color: var(--text-muted); flex-shrink: 0; }

.plan-btn {
  width: 100%;
  justify-content: center;
}

.payment-methods {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.payment-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.payment-logo {
  padding: 7px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.payment-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Privacy / Security Section ── */
.privacy-section { }
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.privacy-card-main { padding: 32px; }
.prv-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(168,85,247,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.prv-icon-sm { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.privacy-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.privacy-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.privacy-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }
.prv-list { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; }
.prv-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; padding: 7px 12px; border-radius: 8px; }
.prv-allow { background: rgba(48,209,88,0.07); color: #30d158; }
.prv-allow span { font-weight: 700; }
.prv-deny { background: rgba(255,59,48,0.07); color: rgba(255,59,48,0.8); }
.prv-deny span { font-weight: 700; }
.prv-note { font-size: 0.78rem; color: var(--text-muted); padding: 12px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border); line-height: 1.5; }
.privacy-cards-right { display: flex; flex-direction: column; gap: 16px; }

/* ── CTA Section ── */
.cta-section { padding: 60px 0 100px; }
.cta-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; position: relative; }
.cta-card p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1rem;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

/* ── Animations ── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--accent-cyan); }
  50%      { opacity: 0.5; box-shadow: 0 0 4px var(--accent-cyan); }
}
@keyframes ringPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.1; transform: scale(1.1); }
}
@keyframes agentGlow {
  0%,100% { box-shadow: 0 0 8px rgba(168,85,247,0.4); }
  50%      { box-shadow: 0 0 16px rgba(0,212,255,0.6); }
}
@keyframes flowPulse {
  from { left: -100%; }
  to   { left: 100%; }
}
@keyframes scrollLine {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

/* ── Responsive Landing ── */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comp-vs { display: none; }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-large, .feat-right { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-4 { grid-template-columns: 1fr 1fr; }
  .plan-featured { transform: none; }
  .free-trial-banner { flex-direction: column; gap: 20px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .flow-diagram { flex-wrap: wrap; gap: 12px; }
  .flow-arrow { display: none; }
}

@media (max-width: 768px) {
  .pricing-grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 40px; }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .stat-divider { width: 80px; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-large, .feat-right { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cta-card { padding: 48px 24px; }
}

/* ══════════════════════════════════════════
   PERFORMANCE ANALYTICS CARD
══════════════════════════════════════════ */
.feat-analytics { padding-bottom: 0 !important; overflow: hidden; }

.analytics-preview {
  margin-top: 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.ap-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ap-stat {
  padding: 12px 14px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.ap-stat:last-child { border-right: none; }

.ap-stat-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 3px;
}

.ap-stat-val.ap-green { color: #30d158; }
.ap-stat-val.ap-red   { color: #ff6b6b; }

.ap-stat-lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ap-chart { position: relative; padding: 10px 10px 0; }

.ap-chart-labels {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 32px;
  gap: 0;
  justify-content: space-between;
}

.ap-chart-labels span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(255,255,255,0.2);
}

.ap-svg { width: 100%; display: block; height: 80px; }

.ap-chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 10px;
}

.ap-cf-label { font-size: 0.68rem; color: var(--text-muted); font-family: var(--font-mono); }
.ap-cf-val   { font-size: 0.8rem; font-weight: 700; color: #30d158; }

/* ══════════════════════════════════════════
   NOTIFICATIONS SECTION
══════════════════════════════════════════ */
.notif-section { padding: 80px 0; }

.notif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

/* Channel cards */
.notif-channel-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.notif-channel-card:hover { border-color: var(--border-glow); }

.ncc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.ncc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tg-icon { background: rgba(34,158,217,0.1); border-color: rgba(34,158,217,0.25); }
.wa-icon { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.25); }

.ncc-meta { flex: 1; }
.ncc-name { font-weight: 700; font-size: 0.92rem; }
.ncc-sub  { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

.ncc-status {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
}
.ncc-status.active {
  background: rgba(48,209,88,0.1);
  color: #30d158;
  border: 1px solid rgba(48,209,88,0.2);
}

/* Telegram mock chat */
.tg-chat {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0,0,0,0.15);
}

.tg-msg { display: flex; gap: 8px; align-items: flex-start; }

.tg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.tg-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 10px 10px 10px;
  padding: 8px 11px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.tg-bubble.tg-green { border-color: rgba(48,209,88,0.2); background: rgba(48,209,88,0.05); }

.tg-bname { font-weight: 700; color: var(--accent-purple); font-size: 0.68rem; margin-bottom: 3px; }
.tg-btime { font-size: 0.6rem; color: var(--text-muted); text-align: right; margin-top: 4px; }
.tg-mono  { font-family: var(--font-mono); color: var(--accent-cyan); font-size: 0.68rem; }

/* WhatsApp mock chat */
.wa-chat {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(7,15,7,0.4);
}

.wa-date-divider {
  text-align: center;
  font-size: 0.62rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 2px 12px;
  border-radius: 100px;
  align-self: center;
}

.wa-msg { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }

.wa-bubble {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 10px 0 10px 10px;
  padding: 8px 12px;
  font-size: 0.71rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 92%;
  align-self: flex-end;
}

.wa-bubble.wa-bubble-green { background: rgba(48,209,88,0.08); border-color: rgba(48,209,88,0.25); }

.wa-time {
  font-size: 0.6rem;
  color: var(--text-muted);
  padding-right: 4px;
}

/* Notification types card */
.notif-types-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.ntc-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ntc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ntc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.ntc-item.green  { border-color: rgba(48,209,88,0.12); }
.ntc-item.red    { border-color: rgba(255,107,107,0.12); }
.ntc-item.orange { border-color: rgba(255,159,67,0.12); }
.ntc-item.purple { border-color: rgba(168,85,247,0.12); }
.ntc-item.blue   { border-color: rgba(0,212,255,0.12); }

.ntc-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.ntc-name { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.ntc-desc { font-size: 0.68rem; color: var(--text-muted); line-height: 1.4; }

.ntc-setup {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ═══ AI AGENTS SHOWCASE ═══ */
.ai-arsenal-section {
  background: linear-gradient(180deg, transparent 0%, rgba(168,85,247,0.04) 50%, transparent 100%);
}

/* Three agent cards */
.ai-agents-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 28px;
}

.aas-agent {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.aas-agent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  border-radius: 20px 20px 0 0;
}
.aas-quant::before   { background: linear-gradient(90deg, #A855F7, #7B5EA7); }
.aas-sentiment::before { background: linear-gradient(90deg, #00D4FF, #0099BB); }
.aas-risk::before    { background: linear-gradient(90deg, #30d158, #10B981); }
.aas-agent:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.aas-quant:hover { border-color: rgba(168,85,247,0.4); }
.aas-sentiment:hover { border-color: rgba(0,212,255,0.3); }
.aas-risk:hover { border-color: rgba(48,209,88,0.3); }

/* Animated orb */
.aas-orb {
  width: 64px; height: 64px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.aas-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbPulse 2.4s ease-in-out infinite;
}
.aas-orb-ring.r1 { width: 54px; height: 54px; animation-delay: 0s; }
.aas-orb-ring.r2 { width: 70px; height: 70px; animation-delay: 0.6s; opacity: 0.4; }
.aas-quant .aas-orb-ring    { border-color: rgba(168,85,247,0.4); }
.aas-sentiment .aas-orb-ring { border-color: rgba(0,212,255,0.4); }
.aas-risk .aas-orb-ring      { border-color: rgba(48,209,88,0.4); }
@keyframes orbPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.aas-orb-core {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.aas-quant .aas-orb-core    { background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.25); }
.aas-sentiment .aas-orb-core { background: rgba(0,212,255,0.1);   border: 1px solid rgba(0,212,255,0.25); }
.aas-risk .aas-orb-core      { background: rgba(48,209,88,0.1);   border: 1px solid rgba(48,209,88,0.25); }

.aas-body { flex: 1; width: 100%; }
.aas-name { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; margin-bottom: 2px; }
.aas-spec { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 10px; }
.aas-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.aas-tags span { font-size: 0.62rem; font-weight: 600; padding: 3px 9px; border-radius: 5px; background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.07); }
.aas-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

/* Score bar */
.aas-score-demo { }
.asd-label { font-size: 0.62rem; color: var(--text-muted); margin-bottom: 5px; }
.asd-bar-wrap { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.asd-bar { height: 100%; border-radius: 3px; }
.asd-val { font-size: 0.7rem; font-weight: 700; text-align: right; }
.aas-quant .asd-val { color: #A855F7; }
.aas-sentiment .asd-val { color: #00D4FF; }
.aas-risk .asd-val { color: #30d158; }

/* Vote badge */
.aas-vote {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
}
.vote-approve { background: rgba(48,209,88,0.1); color: #30d158; border: 1px solid rgba(48,209,88,0.25); }
.vote-block   { background: rgba(239,68,68,0.1);  color: #EF4444; border: 1px solid rgba(239,68,68,0.25); }

/* Verdict bar */
.aas-verdict-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, rgba(168,85,247,0.08), rgba(0,212,255,0.05));
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 16px;
  padding: 20px 32px;
  margin-bottom: 24px;
}
.avb-left { flex: 1; }
.avb-tally { font-size: 1.6rem; font-weight: 900; color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; }
.avb-tally span { color: var(--text-muted); font-weight: 400; }
.avb-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.avb-center { font-size: 1.2rem; color: var(--text-muted); letter-spacing: 0.08em; }
.avb-right { text-align: right; }
.avb-result { font-size: 1.4rem; font-weight: 900; color: #10B981; font-family: 'Space Grotesk', sans-serif; }
.avb-time { font-size: 0.65rem; color: var(--text-muted); margin-top: 4px; font-family: 'JetBrains Mono', monospace; }

/* ── 5-Agent Courtroom Layout ── */
.agents-courtroom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.ac-row {
  display: flex;
  gap: 16px;
}
.ac-row-top { justify-content: center; }
.ac-row-top .aas-agent { flex: 0 0 calc(33.33% - 11px); max-width: calc(33.33% - 11px); }
.ac-row-bottom { justify-content: center; }
.ac-row-bottom .aas-agent { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }

/* Fundamental Agent — amber */
.aas-fundamental::before { background: linear-gradient(90deg, #F59E0B, #D97706); }
.aas-fundamental:hover { border-color: rgba(245,158,11,0.4); }
.aas-fundamental .aas-orb-ring { border-color: rgba(245,158,11,0.4); }
.aas-fundamental .aas-orb-core { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); }
.aas-fundamental .asd-val { color: #F59E0B; }

/* Social Agent — pink-purple */
.aas-social::before { background: linear-gradient(90deg, #EC4899, #A855F7); }
.aas-social:hover { border-color: rgba(236,72,153,0.4); }
.aas-social .aas-orb-ring { border-color: rgba(236,72,153,0.4); }
.aas-social .aas-orb-core { background: rgba(236,72,153,0.1); border: 1px solid rgba(236,72,153,0.25); }
.aas-social .asd-val { color: #EC4899; }

/* Market Sentiment Agent — cyan (already handled by .aas-sentiment, alias) */
.aas-market-sentiment::before { background: linear-gradient(90deg, #00D4FF, #0099BB); }
.aas-market-sentiment:hover { border-color: rgba(0,212,255,0.3); }
.aas-market-sentiment .aas-orb-ring { border-color: rgba(0,212,255,0.4); }
.aas-market-sentiment .aas-orb-core { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25); }
.aas-market-sentiment .asd-val { color: #00D4FF; }

/* ── New Vote Result Block ── */
.agents-vote-result {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(168,85,247,0.07), rgba(0,212,255,0.04));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.agents-vote-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.6), rgba(0,212,255,0.4), transparent);
}
.avr-votes {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.avr-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 10px rgba(48,209,88,0.6);
  animation: avrPulse 2s ease-in-out infinite;
}
.avr-dot:nth-child(1) { animation-delay: 0s; }
.avr-dot:nth-child(2) { animation-delay: 0.15s; }
.avr-dot:nth-child(3) { animation-delay: 0.3s; }
.avr-dot:nth-child(4) { animation-delay: 0.45s; }
.avr-dot:nth-child(5) { animation-delay: 0.6s; }
.avr-dot.blocked { background: #EF4444; box-shadow: 0 0 10px rgba(239,68,68,0.6); }
@keyframes avrPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}
.avr-center { flex: 1; text-align: center; }
.avr-score {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.avr-label { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 4px; }
.avr-note  { font-size: 0.65rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.avr-verdict { text-align: right; flex-shrink: 0; }
.avr-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #30d158;
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.3);
  padding: 8px 20px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.avr-timing { font-size: 0.62rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }

/* Pricing additions */
.plan-trial-note { font-size: 0.68rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* Payment logos */
.payment-logo-visa { display: flex; align-items: center; }
.payment-logo-mc { display: flex; align-items: center; }

/* Responsive */
.ai-models-strip {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
  margin: 52px 0 40px;
  flex-wrap: wrap;
}

.ai-model-card {
  flex: 1;
  min-width: 160px;
  max-width: 210px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ai-model-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ai-model-card:hover::before { opacity: 1; }
.ai-model-card:hover {
  border-color: rgba(168,85,247,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(168,85,247,0.12);
}

.aim-center-card {
  flex: 1.3;
  max-width: 240px;
  border-color: rgba(168,85,247,0.4);
  background: linear-gradient(160deg, rgba(168,85,247,0.08) 0%, rgba(0,212,255,0.04) 100%);
  box-shadow: 0 0 40px rgba(168,85,247,0.15);
}
.aim-center-card::after {
  content: '⭐ CORE';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #A855F7;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 4px;
  padding: 2px 6px;
}

.aim-orb {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aim-claude  { background: rgba(217,119,87,0.12); border: 1px solid rgba(217,119,87,0.25); }
.aim-gpt     { background: rgba(16,163,127,0.12); border: 1px solid rgba(16,163,127,0.25); }
.aim-gemini  { background: rgba(66,133,244,0.10); border: 1px solid rgba(66,133,244,0.2); }
.aim-grok    { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.aim-minesix { background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.3); width: 70px; height: 70px; border-radius: 18px; }

.aim-name { font-size: 1rem; font-weight: 800; color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; }
.aim-name-mx { font-size: 0.9rem; line-height: 1.2; }
.aim-maker { font-size: 0.65rem; color: var(--text-muted); margin-top: -4px; }
.aim-role { font-size: 0.72rem; color: var(--text-secondary); }

.aim-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(168,85,247,0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(168,85,247,0.2);
}
.aim-badge-mx {
  background: linear-gradient(90deg, rgba(168,85,247,0.2), rgba(0,212,255,0.1));
  border-color: rgba(168,85,247,0.35);
  color: var(--text-primary);
}

.ai-consensus-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
}
.acf-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.acf-step-final .acf-text { color: var(--text-primary); font-weight: 600; }
.acf-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(0,212,255,0.2));
  border: 1px solid rgba(168,85,247,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: var(--accent-purple);
  flex-shrink: 0;
}
.acf-arrow { font-size: 1rem; color: var(--text-muted); }

/* ═══ TRAILING INTELLIGENCE SECTION ═══ */
.trailing-section { }

.trailing-pain {
  display: flex;
  gap: 16px;
  margin: 40px 0 48px;
  flex-wrap: wrap;
}
.tp-item {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: 12px;
  padding: 16px 18px;
}
.tp-icon { font-size: 1.4rem; flex-shrink: 0; }
.tp-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; font-style: italic; }

.trailing-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ts-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 12px;
}
.ts-left h3 { font-size: 1.5rem; font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.ts-left p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

.ts-bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.ts-bullet { display: flex; gap: 14px; align-items: flex-start; font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.ts-bullet strong { color: var(--text-primary); display: block; margin-bottom: 2px; }
.tsb-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

.ts-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-muted);
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 8px;
  padding: 10px 14px;
}
.ts-note strong { color: var(--text-secondary); }

/* Trailing UI widget */
.trail-ui {
  background: #0d0f1f;
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(168,85,247,0.12);
}
.tui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(168,85,247,0.06);
  border-bottom: 1px solid rgba(168,85,247,0.12);
  font-size: 0.78rem;
}
.tui-pair { font-weight: 700; color: var(--text-primary); font-family: 'JetBrains Mono', monospace; }
.tui-status { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; color: #A855F7; background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.2); padding: 3px 8px; border-radius: 4px; }

.tui-chart { padding: 12px 16px; }
.tui-svg { width: 100%; height: auto; }

.tui-pnl-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tui-pnl { flex: 1; text-align: center; padding: 12px 8px; border-right: 1px solid rgba(255,255,255,0.06); }
.tui-pnl:last-child { border-right: none; }
.tui-pnl-lbl { display: block; font-size: 0.6rem; color: var(--text-muted); margin-bottom: 4px; }
.tui-pnl-val { font-size: 0.9rem; font-weight: 800; color: #10B981; font-family: 'JetBrains Mono', monospace; }
.tui-pnl-val.locked { color: #A855F7; }
.tui-pnl:last-child .tui-pnl-val { color: var(--text-secondary); font-size: 0.8rem; }

.tui-ai-decision { padding: 16px 16px 18px; }
.tui-ai-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.tui-decisions { display: flex; gap: 8px; margin-bottom: 12px; }
.tuid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  cursor: default;
  transition: all 0.3s;
}
.tuid.hold.active {
  border-color: rgba(168,85,247,0.5);
  background: rgba(168,85,247,0.1);
  box-shadow: 0 0 20px rgba(168,85,247,0.15);
}
.tuid-icon { font-size: 1.1rem; }
.tuid-label { font-size: 0.58rem; font-weight: 700; text-align: center; line-height: 1.3; color: var(--text-secondary); }
.tuid.hold.active .tuid-label { color: #A855F7; }
.tuid-score { font-size: 0.55rem; color: var(--text-muted); }
.tuid.hold.active .tuid-score { color: var(--accent-purple); font-weight: 700; }

.tui-reasoning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.5;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 8px;
  padding: 8px 12px;
}
.tui-reas-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #A855F7;
  box-shadow: 0 0 6px #A855F7;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Trailing Cinema Animation ── */
.trailing-cinema {
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(168,85,247,0.05), rgba(0,212,255,0.03));
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(168,85,247,0.1);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(168,85,247,0.06);
  border-bottom: 1px solid rgba(168,85,247,0.15);
  flex-wrap: wrap;
}
.tc-header-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-purple);
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-phases-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  flex: 1;
}
.tcp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.tcp-item:hover {
  color: rgba(168,85,247,0.8);
  background: rgba(168,85,247,0.07);
  border-color: rgba(168,85,247,0.15);
}
.tcp-item.active {
  color: #A855F7;
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.3);
}
.tcp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.tcp-item.active .tcp-dot {
  box-shadow: 0 0 6px currentColor;
  animation: avrPulse 1.5s ease-in-out infinite;
}
.tcp-arrow { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

.tc-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

/* Trade card (left) */
.tc-card {
  border-right: 1px solid rgba(168,85,247,0.12);
  padding: 20px;
}
.tc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tc-pair {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}
.tc-ai-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #A855F7;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.25);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.4s;
}
.tc-chart-wrap { margin-bottom: 14px; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.02); }
.tc-svg { width: 100%; height: auto; display: block; }

.tc-pnl-row {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.tc-pnl-item {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.tc-pnl-item:last-child { border-right: none; }
.tc-pnl-lbl { display: block; font-size: 0.58rem; color: var(--text-muted); margin-bottom: 3px; }
.tc-pnl-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #EF4444;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.5s;
}
.tc-pnl-val.tc-locked { color: #A855F7; }
.tc-pnl-val.tc-decision { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; }

/* Phase descriptions (right col) */
.tc-desc-col {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.tc-phase-desc { animation: fadeIn 0.4s ease both; }
.tc-phase-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.tc-phase-desc h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tc-phase-desc p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Secured balance display */
.tc-secured-display {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(48,209,88,0.08), rgba(0,212,255,0.05));
  border: 1px solid rgba(48,209,88,0.3);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s, transform 0.5s;
}
.tc-secured-display.visible { opacity: 1; transform: scale(1); }
.tcsd-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.tcsd-amount {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: #30d158;
  line-height: 1;
  margin-bottom: 6px;
}
.tcsd-gain { font-size: 0.78rem; color: #30d158; margin-bottom: 10px; }
.tcsd-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #30d158;
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.25);
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .ai-agents-showcase { grid-template-columns: 1fr; }
  .trailing-solution { grid-template-columns: 1fr; }
  .ts-right { order: -1; }
  .tc-stage { grid-template-columns: 1fr; }
  .tc-card { border-right: none; border-bottom: 1px solid rgba(168,85,247,0.12); }
}
@media (max-width: 768px) {
  .ac-row-top { flex-wrap: wrap; }
  .ac-row-top .aas-agent { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
  .ac-row-bottom .aas-agent { flex: 0 0 100%; max-width: 100%; }
  .agents-vote-result { flex-direction: column; text-align: center; gap: 16px; }
  .avr-votes { justify-content: center; }
  .avr-verdict { text-align: center; }
}
@media (max-width: 640px) {
  .acf-arrow { display: none; }
  .ai-consensus-flow { flex-direction: column; align-items: flex-start; }
  .aas-verdict-bar { flex-direction: column; text-align: center; padding: 20px; }
  .ac-row-top .aas-agent { flex: 0 0 100%; max-width: 100%; }
}

/* ── AI Self-Learning Feature Card ── */
.feat-learning-bar { margin-top: 16px; }
.flb-label { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; }
.flb-pct { color: #30d158; font-weight: 600; }
.flb-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.flb-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #A855F7, #00D4FF);
  border-radius: 3px;
  position: relative;
}
.flb-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 20px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  animation: shimmer 1.8s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{opacity:0.3} 50%{opacity:1} }
.flb-ticks { display: flex; justify-content: space-between; font-size: 0.6rem; color: var(--text-muted); margin-top: 4px; }

/* ── Market Intelligence Feature Card ── */
.feat-intel-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.fi-chip {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
}
.fi-chip-bull { color: #30d158; border-color: rgba(48,209,88,0.25); background: rgba(48,209,88,0.06); }
.fi-chip-bear { color: #ff6b6b; border-color: rgba(255,107,107,0.25); background: rgba(255,107,107,0.06); }
.fi-chip-news { color: var(--accent-cyan); border-color: rgba(0,212,255,0.25); background: rgba(0,212,255,0.06); }
.fi-chip-sent { color: var(--accent-purple); border-color: rgba(168,85,247,0.25); background: rgba(168,85,247,0.06); }

/* ── SAT Mode Section ── */
.sat-section { background: linear-gradient(180deg, rgba(168,85,247,0.03) 0%, transparent 100%); }

.sat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}

.sat-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.sat-step:hover { border-color: rgba(168,85,247,0.4); }

.sat-step-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(168,85,247,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background-clip: text;
  color: transparent;
  background: linear-gradient(135deg, #A855F7, #00D4FF);
  -webkit-background-clip: text;
}

.sat-step-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.sat-step-body p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.sat-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 40px;
  margin-bottom: 28px;
}
.sat-stat { flex: 1; text-align: center; }
.sat-stat-val { font-size: 1.8rem; font-weight: 900; font-family: 'Space Grotesk', sans-serif; }
.sat-stat-lbl { font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }
.sat-stat-lbl span { font-size: 0.65rem; color: var(--text-muted); display: block; }
.sat-stat-div { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

.sat-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 14px;
  padding: 20px 24px;
}
.sat-callout-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(168,85,247,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sat-callout p { flex: 1; font-size: 0.84rem; color: var(--text-secondary); margin: 0; }
.sat-callout strong { color: var(--text-primary); }
.sat-callout .btn-primary { flex-shrink: 0; font-size: 0.82rem; padding: 10px 20px; white-space: nowrap; }

/* ── Market Intelligence Section ── */
.market-intel-section { }

.mi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.mi-features { display: flex; flex-direction: column; gap: 24px; }

.mi-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mi-feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.mi-feat-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin: 0 0 6px; }
.mi-feat-body p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Telegram mock for market intel */
.mi-tg-mock {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.mi-tg-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #0f0f1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mi-tg-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #00D4FF);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.mi-tg-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.mi-tg-sub { font-size: 0.68rem; color: var(--text-muted); }
.mi-tg-dot { width: 8px; height: 8px; border-radius: 50%; background: #30d158; margin-left: auto; box-shadow: 0 0 6px #30d158; }

.mi-tg-messages { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mi-tg-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px 12px 12px 0;
  padding: 10px 12px;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
  position: relative;
}
.mi-tg-bubble.mi-tg-bull { border-color: rgba(48,209,88,0.2); background: rgba(48,209,88,0.05); }
.mi-tg-bubble.mi-tg-news { border-color: rgba(0,212,255,0.2); background: rgba(0,212,255,0.05); }
.mi-tg-bubble.mi-tg-warn { border-color: rgba(255,159,67,0.2); background: rgba(255,159,67,0.05); }
.mi-tg-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.mi-tg-text { color: var(--text-secondary); }
.mi-tg-text strong { color: var(--text-primary); }
.mi-tg-tip { font-size: 0.68rem; color: var(--accent-cyan); display: block; margin-top: 4px; }
.mi-tg-go { color: #30d158; font-weight: 600; }
.mi-tg-time { font-size: 0.6rem; color: var(--text-muted); text-align: right; margin-top: 4px; }

/* Responsive */
@media (max-width: 1024px) {
  .sat-grid { grid-template-columns: 1fr; }
  .sat-stats-row { flex-wrap: wrap; gap: 20px; padding: 24px; }
  .sat-stat-div { display: none; }
  .sat-callout { flex-wrap: wrap; }
  .mi-layout { grid-template-columns: 1fr; }
  .notif-grid { grid-template-columns: 1fr 1fr; }
  .notif-types-card { grid-column: span 2; }
}

@media (max-width: 640px) {
  .sat-grid { grid-template-columns: 1fr; }
  .sat-stats-row { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .notif-grid { grid-template-columns: 1fr; }
  .notif-types-card { grid-column: span 1; }
  .ap-stats { grid-template-columns: repeat(2,1fr); }
}
