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

:root {
  --bg: #0d0f12;
  --surface: #161820;
  --surface2: #1e2129;
  --border: rgba(139, 146, 154, 0.12);
  --border-bright: rgba(139, 146, 154, 0.25);
  --fg: #f0ede6;
  --fg-muted: #8b929a;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.15; }

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-wordmark {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 64px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); top: -100px; right: 0; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%); bottom: 0; left: 200px; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(180,80,20,0.1) 0%, transparent 70%); top: 50%; right: 30%; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  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(1.3); }
}

.hero-headline {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.05;
}

.headline-accent {
  background: linear-gradient(135deg, #f5a623, #d4891a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  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-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

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

/* HERO RIGHT - visual cards */
.hero-right { display: flex; justify-content: flex-end; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
  transition: border-color 0.3s;
}

.visual-card:hover { border-color: var(--border-bright); }

.card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.card-top .card-company {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.card-top .card-detail {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.tag {
  font-size: 10px;
  padding: 3px 9px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 100px;
  font-weight: 500;
}

.card-mid .card-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.4;
}

.card-mid .card-preview {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}

.card-mid .card-sent {
  font-size: 11px;
  color: #5a9e6f;
  font-weight: 600;
}

.card-bot .card-reply {
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 6px;
  font-style: italic;
}

.card-bot .card-action {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover { border-color: rgba(245, 166, 35, 0.25); }

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-icon { margin-bottom: 20px; }

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* ===== FEATURES ===== */
.features {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.feature-card:hover { border-color: rgba(245, 166, 35, 0.2); }

.feature-glyph { margin-bottom: 20px; }

.feature-title {
  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; }

/* ===== DASHBOARD ===== */
.dashboard-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.dashboard-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.05);
}

.dash-sidebar {
  background: #111318;
  padding: 24px 0;
  border-right: 1px solid var(--border);
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.dash-nav-item.active {
  background: var(--accent-dim);
  color: var(--accent);
  border-right: 2px solid var(--accent);
}

.dash-main { padding: 28px 32px; }

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dash-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.dash-filter {
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.dash-metric { display: flex; flex-direction: column; gap: 3px; }

.metric-val {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.metric-label { font-size: 11px; color: var(--fg-muted); }

.dash-leads { display: flex; flex-direction: column; gap: 2px; }

.lead-row {
  display: grid;
  grid-template-columns: 12px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.lead-row:hover { background: var(--surface2); }

.lead-status {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.lead-status.sent { background: #5a9e6f; }
.lead-status.pending { background: var(--accent); }
.lead-status.researching { background: var(--fg-muted); animation: pulse-dot 1.5s infinite; }

.lead-info { display: flex; flex-direction: column; gap: 2px; }

.lead-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.lead-company {
  font-size: 11px;
  color: var(--fg-muted);
}

.lead-stage {
  font-size: 11px;
  color: var(--fg-muted);
}

.lead-reply {
  font-size: 11px;
  font-weight: 600;
  color: #5a9e6f;
}

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

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

.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 28px;
  font-style: normal;
}

.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ===== CLOSING ===== */
.closing {
  position: relative;
  padding: 100px 64px 120px;
  text-align: center;
  overflow: hidden;
}

.orb4 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(100px);
  pointer-events: none;
}

.closing { position: relative; }
.closing-bg-orb { position: absolute; }

.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
  position: relative;
}

.closing-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  position: relative;
}

.closing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 40px;
  text-align: left;
  max-width: 420px;
  width: 100%;
}

.closing-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}

.closing-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--fg);
}

.closing-check {
  width: 20px; height: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.closing-note {
  font-size: 15px;
  color: var(--fg-muted);
  position: relative;
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(139,146,154,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { justify-content: flex-start; }
  .hero-visual { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; }
  .features-grid { grid-template-columns: 1fr; }
  .dashboard-mockup { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 60px 24px; }
  .how-it-works, .features, .dashboard-section, .manifesto, .closing { padding: 80px 24px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 26px; }
  .closing-headline { font-size: 26px; }
  .hero-stats { flex-wrap: wrap; }
}
