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

:root {
  --bg: #080C14;
  --bg-2: #0D1421;
  --bg-3: #111927;
  --accent: #CAFF00;
  --accent-dim: rgba(202, 255, 0, 0.5);
  --amber: #F4A261;
  --fg: #E8EAF0;
  --fg-muted: #6B7280;
  --fg-dim: #3D4451;
  --border: rgba(255,255,255,0.06);
  --radius: 10px;
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 24px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(202,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 28px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  width: fit-content;
}

.tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.headline-accent { color: var(--accent); }

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}

.meta-stat { display: flex; flex-direction: column; gap: 2px; }
.meta-num { font-size: 1.5rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.meta-label { font-size: 0.7rem; color: var(--fg-muted); font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.05em; }
.meta-divider { width: 1px; height: 32px; background: var(--border); }

/* === SIM WINDOW === */
.hero-visual { display: flex; justify-content: flex-end; }

.sim-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.sim-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}

.sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.sim-dot.red { background: #FF5F57; }
.sim-dot.yellow { background: #FEBC2E; }
.sim-dot.green { background: #28C840; }

.sim-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-left: 8px;
}

.sim-body { padding: 16px; min-height: 200px; }

.log-line {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.log-time { color: var(--fg-dim); }
.log-signal { color: var(--fg); }
.log-signal strong { color: var(--accent); }
.log-research { color: var(--amber); }
.log-email { color: var(--fg-muted); }
.log-wait { color: var(--fg-dim); font-style: italic; }

.log-icon { margin-top: 2px; flex-shrink: 0; }

.sim-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.sim-dot-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: dot-pulse 1.4s ease-in-out infinite;
}

.delay1 { animation-delay: 0.2s; }
.delay2 { animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* === PIPELINE === */
.pipeline {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pipeline-header { max-width: 1200px; margin: 0 auto 64px; }

.section-label {
  font-size: 0.75rem;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-sub { font-size: 1.1rem; color: var(--fg-muted); }

.pipeline-track {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pipeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pipeline-step.reveal { opacity: 1; transform: translateY(0); }

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

.step-icon { }

.step-title { font-size: 1.1rem; font-weight: 600; color: var(--fg); }

.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

.pipeline-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  flex-shrink: 0;
}

/* === FEATURES === */
.features { padding: 100px 24px; background: var(--bg); }

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feat-card {
  background: var(--bg-2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s, background 0.2s;
}

.feat-card.reveal { opacity: 1; transform: translateY(0); }
.feat-card:hover { background: var(--bg-3); }

.feat-primary {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(202,255,0,0.06) 0%, var(--bg-2) 60%);
}

.feat-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  width: fit-content;
}

.feat-title { font-size: 1.3rem; font-weight: 600; color: var(--fg); }
.feat-body { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; }

.feat-example {
  margin-top: 8px;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.example-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.example-text { font-size: 0.85rem; color: var(--fg); font-style: italic; line-height: 1.6; }
.example-response { font-size: 0.8rem; color: var(--accent); margin-top: 8px; font-family: 'DM Mono', monospace; }

/* === LOOP === */
.loop { padding: 100px 24px; background: var(--bg-2); border-top: 1px solid var(--border); }

.loop-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.loop-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
}

.loop-accent { color: var(--amber); }

.loop-body { font-size: 1rem; color: var(--fg-muted); margin-top: 20px; line-height: 1.7; }

.reply-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.reply-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.reply-from { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.reply-time { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--fg-dim); }

.reply-subject { padding: 12px 18px 8px; font-size: 0.8rem; color: var(--accent); font-weight: 600; }

.reply-body { padding: 8px 18px 18px; font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

.reply-agent {
  padding: 12px 18px;
  background: rgba(202,255,0,0.06);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  flex-shrink: 0;
}

.agent-note { font-size: 0.8rem; color: var(--fg-muted); }

/* === CLOSING === */
.closing { padding: 100px 24px; background: var(--bg); }

.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.closing-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub { font-size: 1.1rem; color: var(--fg-muted); max-width: 520px; margin: 0 auto 60px; line-height: 1.7; }

.closing-proof {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.proof-item {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
}

.proof-item:last-child { border-right: none; }

.proof-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  font-family: 'Space Grotesk', sans-serif;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  text-align: center;
  max-width: 160px;
}

/* === FOOTER === */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-align: right;
}

/* === SCROLL REVEAL === */
.reveal-on-scroll .pipeline-step,
.reveal-on-scroll .feat-card,
.reveal-on-scroll .pipeline-step,
.reveal-on-scroll .feat-card {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-on-scroll.reveal .pipeline-step,
.reveal-on-scroll.reveal .feat-card {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .sim-window { max-width: 100%; }

  .pipeline-track { flex-direction: column; gap: 32px; }
  .pipeline-arrow { transform: rotate(90deg); padding: 0; }

  .features-grid { grid-template-columns: 1fr; }
  .feat-primary { grid-row: auto; }

  .loop-inner { grid-template-columns: 1fr; gap: 40px; }

  .closing-proof { flex-direction: column; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-item:last-child { border-bottom: none; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-note { text-align: center; }
}

/* === HERO V2 — Waitlist form === */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 24px 100px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(202,255,0,0.07) 0%, transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--bg-2), transparent); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 680px; }
.hero-headline { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.04em; color: var(--fg); margin-bottom: 24px; }
.hero-lede { font-size: 1.2rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-cta { display: flex; flex-direction: column; gap: 16px; }
.waitlist-form { display: flex; gap: 0; max-width: 480px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--bg-2); transition: border-color 0.2s; }
.waitlist-form:focus-within { border-color: var(--accent-dim); }
.waitlist-input { flex: 1; padding: 14px 18px; background: transparent; border: none; color: var(--fg); font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; outline: none; min-width: 0; }
.waitlist-input::placeholder { color: var(--fg-dim); }
.waitlist-btn { padding: 14px 24px; background: var(--accent); color: var(--bg); border: none; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.waitlist-btn:hover { background: #d9ff33; }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-success { font-size: 0.9rem; color: var(--accent); font-weight: 500; }
.waitlist-meta { font-size: 0.8rem; color: var(--fg-dim); font-family: 'DM Mono', monospace; }
.waitlist-success--closing { font-size: 0.9rem; color: var(--accent); font-weight: 500; }

/* === STEPS TRACK (pipeline v2) === */
.steps-track { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; gap: 0; }
.step-card { flex: 1; display: flex; flex-direction: column; gap: 20px; padding: 0 32px; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.step-card.reveal { opacity: 1; transform: translateY(0); }
.step-connector { display: flex; align-items: center; padding-top: 48px; flex-shrink: 0; }

/* === PILLARS (features v2) === */
.features { padding: 100px 24px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-header { max-width: 1200px; margin: 0 auto 56px; }
.pillars { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.pillar { background: var(--bg); padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s; }
.pillar.reveal { opacity: 1; transform: translateY(0); }
.pillar-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; }
.pillar-title { font-size: 1.1rem; font-weight: 600; color: var(--fg); line-height: 1.3; }
.pillar-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.75; }

/* === FOUNDER === */
.founder { padding: 100px 24px; background: var(--bg); }
.founder-inner { max-width: 900px; margin: 0 auto; }
.founder-quote { position: relative; padding-left: 28px; }
.founder-quote::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); border-radius: 2px; }
.founder-text { font-size: 1.3rem; color: var(--fg); line-height: 1.75; font-weight: 400; font-style: italic; }
.founder-attr { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.attr-mark { display: flex; }
.attr-name { font-size: 0.85rem; color: var(--fg-muted); font-family: 'DM Mono', monospace; }

/* === FAQ === */
.faq { padding: 100px 24px; background: var(--bg-2); border-top: 1px solid var(--border); }
.faq-header { max-width: 900px; margin: 0 auto 56px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; background: var(--bg); color: var(--fg); font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; border: none; transition: background 0.2s; gap: 16px; }
.faq-q:hover { background: var(--bg-2); }
.faq-toggle { color: var(--fg-muted); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-q[aria-expanded="true"] .faq-toggle { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--bg); }
.faq-a p { padding: 0 28px 24px; font-size: 0.95rem; color: var(--fg-muted); line-height: 1.75; }

/* === CLOSING V2 === */
.closing { padding: 120px 24px; background: var(--bg); text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; color: var(--fg); margin-bottom: 48px; }
.closing-cta { display: flex; justify-content: center; }
.closing-note { font-size: 0.85rem; color: var(--fg-dim); font-family: 'DM Mono', monospace; margin-top: 16px; }
.waitlist-form--closing { margin: 0 auto; }

/* === FOOTER V2 === */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--fg-dim); }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-link { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .steps-track { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .founder-text { font-size: 1.1rem; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .waitlist-form { flex-direction: column; border-radius: 8px; }
  .waitlist-input { padding: 14px 16px; }
  .waitlist-btn { padding: 14px; }
  .closing-headline { font-size: 2.2rem; }
  .closing-cta { width: 100%; }
  .waitlist-form--closing { width: 100%; max-width: 100%; }
}

/* === WATCH THE AGENT === */
.watch-agent {
  padding: 100px 24px;
  background: var(--bg);
}

.watch-header { max-width: 860px; margin: 0 auto 56px; }

.watch-stepper { max-width: 860px; margin: 0 auto; }

.watch-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.watch-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--fg-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.watch-tab:hover { color: var(--fg); }

.watch-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-dim);
}

.watch-tab.active .tab-num { color: var(--accent); }

.watch-panel { display: block; }
.watch-panel[hidden] { display: none; }

/* Signal card */
.signal-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.signal-company {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}

.signal-detail {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.detail-mono { font-family: 'DM Mono', monospace; font-size: 0.85rem; }
.detail-accent { color: var(--accent); font-weight: 600; }

.signal-context { display: flex; flex-direction: column; gap: 14px; }

.context-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.context-row svg { flex-shrink: 0; margin-top: 2px; }

/* Research card */
.research-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.research-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.prospect-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.prospect-info { flex: 1; }
.prospect-name { font-size: 1.1rem; font-weight: 600; color: var(--fg); }
.prospect-role { font-size: 0.85rem; color: var(--fg-muted); margin-top: 2px; }

.verify-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
}

.research-context { display: flex; flex-direction: column; gap: 16px; }

.research-row { display: flex; gap: 16px; align-items: flex-start; }

.res-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  min-width: 100px;
  padding-top: 2px;
}

.res-value { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* Email mock */
.email-mock {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.email-mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.em-from { display: flex; flex-direction: column; gap: 2px; }
.em-from-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.em-from-addr { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--fg-muted); }

.em-autonomous-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  background: rgba(202, 255, 0, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--accent-dim);
}

.email-mock-subject {
  padding: 18px 24px 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  font-style: italic;
}

.email-mock-body {
  padding: 24px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.email-mock-body p { margin-bottom: 14px; }
.email-mock-body p:last-child { margin-bottom: 0; }

.email-mock-time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}

.em-time-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

.em-time-value {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Watch CTA */
.watch-cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(202, 255, 0, 0.04);
  border: 1px solid var(--accent-dim);
  border-radius: 10px;
}

.watch-cta-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.watch-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.watch-cta-btn:hover { background: #d9ff33; }

/* Responsive */
@media (max-width: 600px) {
  .watch-tabs { flex-wrap: nowrap; overflow-x: auto; gap: 0; }
  .watch-tab { padding: 10px 16px; white-space: nowrap; }
  .watch-cta { flex-direction: column; gap: 12px; }
  .watch-cta-btn { text-align: center; justify-content: center; }
  .research-row { flex-direction: column; gap: 4px; }
  .res-label { min-width: auto; }
  .signal-card, .research-card, .email-mock { padding: 20px; }
}
