/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #070B12;
  --bg-card: #0C1220;
  --bg-card-hover: #111928;
  --fg: #E2E8F0;
  --fg-muted: #94A3B8;
  --fg-subtle: #4A5568;
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-glow: rgba(0, 229, 160, 0.25);
  --danger: #E54545;
  --danger-dim: rgba(229, 69, 69, 0.12);
  --warn: #F59E0B;
  --purple: #6366F1;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(0, 229, 160, 0.25);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --max-w: 1160px;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-accent); border-radius: 99px; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-brand { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg); }
.nav-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 99px;
  padding: 2px 7px;
  letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}
.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,229,160,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.headline-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #00C8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== SIGNAL CARD ===== */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 0 40px rgba(0,229,160,0.08), 0 24px 48px rgba(0,0,0,0.4);
}
.hero-signal-card { padding: 28px; }
.signal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.signal-ticker {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.signal-direction {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 99px;
}
.signal-bullish { background: var(--accent-dim); color: var(--accent); }
.signal-bearish { background: var(--danger-dim); color: var(--danger); }
.signal-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.price-change {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}
.signal-confidence { margin-bottom: 16px; }
.confidence-bar {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  margin-bottom: 6px;
  overflow: hidden;
}
.confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #00C8FF);
  border-radius: 99px;
}
.confidence-label { font-size: 12px; color: var(--fg-muted); }
.signal-reason {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid var(--border-accent);
  padding-left: 12px;
  margin-bottom: 16px;
}
.signal-patterns { display: flex; gap: 8px; flex-wrap: wrap; }
.pattern-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 99px;
  padding: 3px 10px;
}

/* ===== MINI CHART ===== */
.hero-chart-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.mini-chart svg { width: 100%; height: 60px; }
.mini-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--fg-subtle);
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section { padding: 60px 0 80px; }
.dashboard-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.dashboard-label { margin-bottom: 16px; }
.label-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 99px;
  padding: 4px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,160,0.05);
}
.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.dticker { display: flex; gap: 20px; }
.dticker-item { font-size: 12px; font-weight: 600; font-family: var(--font-display); }
.dticker-item.green { color: var(--accent); }
.dticker-item.red { color: var(--danger); }
.d-status { display: flex; align-items: center; gap: 6px; }
.d-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
.d-live-label { font-size: 12px; font-weight: 600; color: var(--accent); }
.dashboard-body { display: grid; grid-template-columns: 160px 1fr; min-height: 340px; }
.d-sidebar { padding: 16px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.d-nav-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
  padding: 8px 12px; border-radius: 8px; cursor: pointer;
}
.d-nav-item.active { background: var(--accent-dim); color: var(--accent); }
.d-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.d-search-bar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--fg-subtle);
}
.d-chart-area { flex: 1; position: relative; }
.d-chart-label { font-size: 12px; font-weight: 600; color: var(--fg-muted); margin-bottom: 8px; }
.d-candles { width: 100%; height: 140px; }
.d-signals-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.d-signal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.d-signal-card.bullish { border-color: rgba(0,229,160,0.2); }
.ds-ticker { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.ds-action { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 4px; }
.ds-action.bullish { color: var(--accent); }
.ds-action.bearish { color: var(--danger); }
.ds-conf { font-size: 13px; font-weight: 600; color: var(--warn); margin-bottom: 4px; }
.ds-reason { font-size: 11px; color: var(--fg-muted); }

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,229,160,0.02) 50%, transparent 100%);
}
.features-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 99px;
  padding: 4px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--fg); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.02em; }
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.7; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; }
.hiw-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.hiw-steps {
  display: flex;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-accent);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.hiw-connector { width: 60px; padding-top: 48px; flex-shrink: 0; }
.connector-line { height: 1px; background: linear-gradient(90deg, transparent, var(--border-accent), transparent); }
.hiw-quote {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding: 32px 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  text-align: center;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.quote-attr { font-size: 13px; color: var(--fg-muted); }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3)); }
.pricing-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(0,229,160,0.1);
}
.p-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 99px;
}
.p-tier { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.p-price { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--fg); margin-bottom: 4px; }
.p-price .p-period { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.p-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.p-features { display: flex; flex-direction: column; gap: 12px; }
.p-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.p-features li:not(.p-disabled) { color: var(--fg); }
.p-features li.p-disabled { opacity: 0.4; }
.p-disabled svg path { stroke: #4a5568 !important; }
.pricing-disclaimer {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: var(--fg-subtle);
  text-align: center;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,229,160,0.05) 0%, transparent 70%);
}
.closing-content { position: relative; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.closing-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; }
.closing-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--fg-subtle); transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
}
.footer-legal { font-size: 12px; color: var(--fg-subtle); line-height: 1.7; margin-bottom: 12px; }
.footer-copy { font-size: 12px; color: var(--fg-subtle); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; gap: 32px; align-items: center; }
  .hiw-connector { display: none; }
  .dashboard-body { grid-template-columns: 1fr; }
  .d-sidebar { display: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .closing-trust { flex-direction: column; align-items: center; }
  .d-signals-row { grid-template-columns: 1fr; }
}