/* ============================================
   PROSPECTR — THEME CSS
   ============================================ */

:root {
  --bg: #0B0F1A;
  --bg-card: #111827;
  --bg-card-hover: #1a2436;
  --fg: #F0F4FF;
  --fg-muted: #8892a4;
  --accent: #B4FF00;
  --accent-dim: rgba(180, 255, 0, 0.08);
  --accent-border: rgba(180, 255, 0, 0.25);
  --border: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.05);
  --text-primary: #F0F4FF;
  --text-secondary: #8892a4;
  --text-accent: #B4FF00;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --section-pad: 100px;
  --container-max: 1100px;
  --container-pad: 24px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(180, 255, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

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

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* ============================================
   SIGNALS
   ============================================ */
.signals {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

.signal-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.signal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.signal-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   OUTBOUND
   ============================================ */
.outbound {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.outbound-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.outbound-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.outbound-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outbound-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.feat-check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Diagram */
.outbound-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diagram-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.diagram-step:first-child {
  border-top: 1px solid var(--border);
}

.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.step-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.step-detail {
  font-size: 13px;
  color: var(--text-secondary);
}

.diagram-connector {
  width: 1px;
  height: 16px;
  background: var(--accent-border);
  margin-left: 18px;
}

/* ============================================
   OUTCOMES
   ============================================ */
.outcomes {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.outcomes-table {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.outcome-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.outcome-row:last-child {
  border-bottom: none;
}

.outcome-col {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.outcome-col:not(:first-child) {
  border-left: 1px solid var(--border);
}

.col-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

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

.outcome-metric {
  font-weight: 500;
  color: var(--text-primary);
}

.col-human {
  color: var(--text-secondary);
}

.col-prospectr {
  color: var(--text-primary);
  font-weight: 600;
}

.strike {
  text-decoration: line-through;
  opacity: 0.5;
}

.green-price {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.header-row .outcome-col {
  background: var(--bg-card);
  padding: 16px 24px;
}

.highlight-row {
  background: var(--accent-dim);
}

.highlight-row .outcome-col {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 720px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-attribution {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 40px;
  padding-left: 31px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ============================================
   CLOSING
   ============================================ */
.closing {
  padding: 120px 0 140px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(180, 255, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.closing-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .hero {
    padding: 80px 0 72px;
    min-height: auto;
  }

  .hero-proof-row {
    gap: 20px;
  }

  .proof-divider {
    display: none;
  }

  .signals-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outbound-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .outcomes-table {
    overflow-x: auto;
  }

  .outcome-row {
    min-width: 600px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-tagline {
    border-left: none;
    padding-left: 0;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(180, 255, 0, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(180, 255, 0, 0.4); }
