:root {
  --bg: #0D1B2A;
  --bg-2: #091422;
  --surface: #132338;
  --surface-2: #1A3048;
  --cyan: #00D4FF;
  --cyan-dim: rgba(0, 212, 255, 0.15);
  --cyan-glow: rgba(0, 212, 255, 0.08);
  --text: #E8E4DC;
  --text-2: #8A9BB0;
  --text-3: #4A6178;
  --border: rgba(0, 212, 255, 0.12);
  --tag-funding: #00D4FF;
  --tag-product: #A78BFA;
  --tag-news: #F59E0B;
  --tag-hiring: #34D399;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--cyan);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Signal Grid */
.hero-visual {
  position: relative;
}
.signal-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.05);
}
.signal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.signal-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.signal-card--major {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, var(--bg-2), rgba(0, 212, 255, 0.04));
}
.signal-card--major::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15));
}
.sc-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
}
.sc-tag--funding { color: var(--cyan); background: rgba(0,212,255,0.1); }
.sc-tag--product { color: var(--tag-product); background: rgba(167,139,250,0.1); }
.sc-tag--news { color: var(--tag-news); background: rgba(245,158,11,0.1); }
.sc-tag--hiring { color: var(--tag-hiring); background: rgba(52,211,153,0.1); }
.sc-company {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.sc-event {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 4px;
}
.sc-time {
  font-size: 10px;
  color: var(--text-3);
}
.sc-signal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
.signal-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cyan-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.ticker-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker-count {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
}
.ticker-priority {
  font-size: 10px;
  color: var(--tag-news);
  margin-left: auto;
}
.hero-bg-grid {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ─── HOW ─── */
.how {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 500;
}
.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  line-height: 1.15;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 32px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--cyan-dim);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--cyan), var(--border));
  margin-top: 48px;
  flex-shrink: 0;
}

/* ─── OUTCOMES ─── */
.outcomes {
  padding: 100px 40px;
  background: var(--bg);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.outcome-card {
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.outcome-card:first-child { border-radius: 16px 0 0 0; }
.outcome-card:nth-child(2) { border-radius: 0 16px 0 0; }
.outcome-card:nth-child(3) { border-radius: 0 0 0 16px; }
.outcome-card:last-child { border-radius: 0 0 16px 0; }
.oc-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.outcome-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.outcome-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.philosophy-inner { max-width: 900px; margin: 0 auto; }
.philosophy-label {
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 28px;
  font-weight: 400;
}
.philosophy-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 720px;
}
.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.p-stat {
  background: var(--surface);
  padding: 32px 28px;
  text-align: center;
}
.p-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.p-stat-desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ─── CLOSING ─── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { max-width: 800px; margin: 0 auto; position: relative; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-accent {
  color: var(--cyan);
  font-style: italic;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 48px;
}
.closing-vision { display: flex; justify-content: center; }
.vision-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.vision-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s infinite;
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-3);
}
.footer-meta {
  font-size: 11px;
  color: var(--text-3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { width: 40px; height: 24px; margin: 0 auto; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { border-radius: 0 !important; }
  .philosophy-stats { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .how { padding: 80px 24px; }
  .outcomes { padding: 80px 24px; }
  .philosophy { padding: 80px 24px; }
  .nav { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── DASHBOARD ─── */
.dashboard {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 40px 80px;
}
.dash-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.dash-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.dash-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.dash-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* Watchlist form */
.watchlist-form {
  display: grid;
  grid-template-columns: 2fr 2fr auto;
  gap: 12px;
  margin-bottom: 8px;
}
.watchlist-form input {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.watchlist-form input:focus { border-color: var(--cyan); }
.watchlist-form input::placeholder { color: var(--text-3); }
select.priority-select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}
.btn-add {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-add:hover { opacity: 0.85; }
.btn-add:active { transform: scale(0.97); }

/* Watchlist entries */
.watchlist-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.watchlist-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.watchlist-entry:hover { border-color: rgba(0,212,255,0.3); }
.priority-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.priority-dot--high { background: #F87171; box-shadow: 0 0 6px #F87171; }
.priority-dot--medium { background: #FBBF24; box-shadow: 0 0 6px #FBBF24; }
.priority-dot--low { background: #34D399; box-shadow: 0 0 6px #34D399; }
.entry-company {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  flex: 1;
}
.entry-keywords {
  font-size: 12px;
  color: var(--text-2);
  flex: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.entry-actions { display: flex; gap: 8px; }
.btn-remove {
  background: none;
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 6px;
  color: #F87171;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-remove:hover { background: rgba(248,113,113,0.1); border-color: #F87171; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-3);
}
.empty-state p { font-size: 14px; margin-top: 8px; }
