@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@300;400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #070D1A;
  --bg-2:      #0B1628;
  --bg-3:      #0F1E35;
  --border:    #1A2E44;
  --border-2:  #243A52;
  --text:      #E2E8F0;
  --text-2:    #94A3B8;
  --text-3:    #475569;
  --accent:    #4F46E5;
  --accent-2:  #6366F1;
  --accent-glow: rgba(79,70,229,0.15);
  --green:     #10B981;
  --red:       #EF4444;
  --amber:     #F59E0B;
  --indigo-dim:#818CF8;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid var(--border);
  background: rgba(7,13,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.15s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  padding: 7px 18px;
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-2); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-2); cursor: pointer; padding: 4px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  color: #F8FAFC;
  max-width: 640px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; padding: 10px 22px; border-radius: var(--r-md); transition: all 0.15s; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-2); border: 0.5px solid var(--border-2); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-3); }

/* ── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.stat-cell {
  background: var(--bg);
  padding: 20px 24px;
}
.stat-cell-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.stat-cell-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-cell-val.green { color: var(--green); }
.stat-cell-val.indigo { color: var(--indigo-dim); }
.stat-cell-note { font-size: 11px; color: var(--text-3); margin-top: 4px; }

/* ── SECTION ────────────────────────────────────────────── */
.section { padding: 48px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-link { font-size: 13px; color: var(--accent); }
.section-link:hover { color: var(--accent-2); }

/* ── SIGNAL CARD ────────────────────────────────────────── */
.signal-card {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
  display: block;
}
.signal-card:hover {
  border-color: var(--accent);
  background: var(--bg-3);
}
.signal-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-sm);
}
.badge-bs    { background: #1E1B4B; color: #818CF8; }
.badge-oil   { background: #1C1200; color: #FCD34D; }
.badge-crypto{ background: #0D1F12; color: #34D399; }
.badge-pol   { background: #1A0A00; color: #FB923C; }
.badge-geo   { background: #0F1A10; color: #6EE7B7; }
.badge-sm    { background: #051A0F; color: #10B981; }
.badge-scout { background: #0D0A1F; color: #A78BFA; }
.badge-weekly{ background: #0F0A00; color: #FDE68A; }
.badge-win   { background: #052010; color: #10B981; }
.badge-loss  { background: #1F0505; color: #EF4444; }
.badge-pending { background: #0F1020; color: #818CF8; }
.signal-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-left: auto;
}
.signal-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #F1F5F9;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.signal-card-summary {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}
.signal-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.call {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}
.call-yes  { color: var(--green); }
.call-no   { color: var(--red); }
.call-fade { color: var(--amber); }
.market-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.market-price span { color: var(--indigo-dim); }
.edge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}
.edge-pos { color: var(--green); }
.edge-neg { color: var(--red); }
.conf {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.card-link {
  margin-left: auto;
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
}
.card-link:hover { color: var(--accent-2); }

/* ── GATE ───────────────────────────────────────────────── */
.gate {
  background: var(--bg-2);
  border: 0.5px solid #2D2A6E;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.gate::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.gate h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 8px;
}
.gate p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; font-weight: 300; }

/* ── SIGNAL DETAIL ──────────────────────────────────────── */
.detail-hero { padding: 48px 0 32px; border-bottom: 0.5px solid var(--border); }
.detail-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.detail-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.detail-scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 28px 0;
}
.score-cell {
  background: var(--bg-2);
  padding: 16px 20px;
}
.score-cell-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.score-cell-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
}
.detail-body { padding: 36px 0; }
.detail-body h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: #F1F5F9;
  margin: 32px 0 12px;
}
.detail-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.detail-body ul { padding-left: 20px; margin-bottom: 16px; }
.detail-body li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 6px;
  font-weight: 300;
}

/* ── LOADING / SKELETON ─────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card { height: 140px; border-radius: var(--r-lg); margin-bottom: 10px; }
.loading-state { text-align: center; padding: 48px 0; color: var(--text-3); font-family: var(--font-mono); font-size: 13px; }
.error-state { text-align: center; padding: 48px 0; color: var(--red); font-size: 13px; }
.empty-state { text-align: center; padding: 64px 0; color: var(--text-3); font-size: 14px; }

/* ── PRICING ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.pricing-card {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
}
.pricing-card.featured { border-color: var(--accent); position: relative; }
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: #F1F5F9; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-3); }
.pricing-desc { font-size: 13px; color: var(--text-2); margin-bottom: 24px; font-weight: 300; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { font-size: 13px; color: var(--text-2); padding: 7px 0; border-bottom: 0.5px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li::before { content: '→'; color: var(--accent); font-family: var(--font-mono); flex-shrink: 0; }
.pricing-features li.muted { color: var(--text-3); }
.pricing-features li.muted::before { color: var(--text-3); content: '—'; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-3); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-2); }

/* ── FILTER TABS ────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filter-tab:hover { border-color: var(--border-2); color: var(--text-2); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-lead {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  color: #F1F5F9;
  line-height: 1.45;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.about-body { font-size: 15px; color: var(--text-2); line-height: 1.8; font-weight: 300; }
.about-body p { margin-bottom: 18px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 0.5px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }
  .hero h1 { font-size: 36px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .detail-scorecard { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .detail-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 28px; }
  .signal-card { padding: 16px; }
}
