:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --text-primary: #0F1629;
  --text-secondary: #6B7280;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --navy: #0F1629;
  --border: #E5E7EB;
  --success: #10B981;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-w: 1160px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: 14px; font-weight: 500; color: #6B7280; text-decoration: none; padding: 7px 14px; border-radius: 8px; transition: color 0.15s; }
.nav-login:hover { color: #0F1629; }
.nav-signup { font-size: 14px; font-weight: 600; color: #0F1629; text-decoration: none; background: #F59E0B; padding: 7px 16px; border-radius: 8px; transition: background 0.15s; }
.nav-signup:hover { background: #fbbf24; }

/* HERO */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-privacy {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Agent card visual */
.hero-visual {
  position: relative;
}
.agent-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  color: white;
  box-shadow: 0 20px 60px rgba(15, 22, 41, 0.25);
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.agent-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.agent-status {
  font-size: 12px;
  color: #9CA3AF;
}
.agent-pulse {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  margin-left: auto;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.agent-tasks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #9CA3AF;
}
.task-item.completed { color: #10B981; }
.task-item.active { color: #F5F5F4; }
.task-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.task-item.completed .task-icon { background: rgba(16,185,129,0.2); }
.task-item.active .task-icon { background: rgba(245,158,11,0.2); color: var(--accent); }
.task-item.pending .task-icon { border: 1px solid rgba(255,255,255,0.2); }
.task-item.pending { opacity: 0.5; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat {
  background: var(--surface);
  padding: 16px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.proof-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.proof-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.proof-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 64px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
}
.step {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-icon {
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-arrow {
  font-size: 28px;
  color: var(--border);
  padding-top: 48px;
}

/* FEATURES */
.features {
  background: var(--navy);
  padding: 96px 32px;
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.features .section-tag { color: var(--accent); }
.features .section-headline { color: white; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px;
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 32px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.manifesto-tag { color: var(--accent); }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.1;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-cta {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
}
.price-card {
  background: var(--surface);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 36px;
}
.price-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-period {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.price-features li:before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 600;
}
.price-note {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 12px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  border: none;
  padding: 12px 4px;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-full { width: 100%; text-align: center; }

/* FOOTER */
.footer {
  background: var(--navy);
  color: white;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: #9CA3AF;
  max-width: 280px;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #9CA3AF;
}
.footer-bottom a { color: #9CA3AF; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 48px; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .proof-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-inner { padding: 16px 20px; }
}

/* ─── APP SHELL ─────────────────────────────────────────────────────────────── */

/* App Nav */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.app-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.app-nav-links { display: flex; gap: 4px; flex: 1; }
.nav-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-tab:hover { background: #F3F4F6; color: var(--text-primary); }
.nav-tab.active { background: #FEF3C7; color: #92400E; font-weight: 600; }

/* Plan badge */
.plan-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.plan-badge.free { background: #F3F4F6; color: #6B7280; }
.plan-badge.pro { background: #FEF3C7; color: #92400E; }

/* Page layout */
.page { padding: 32px; max-width: 1200px; margin: 0 auto; }
.page-inner { max-width: 1200px; margin: 0 auto; }
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.page-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-secondary); }

/* Cards */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.card-title { font-weight: 700; font-size: 15px; color: var(--navy); }
.card-body { padding: 20px; }

/* Buttons (app variants) */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--text-secondary); background: #F9FAFB; }
.btn-ghost {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.btn-ghost:hover { background: #F3F4F6; color: var(--text-primary); }
.btn-ghost.danger:hover { background: #FEF2F2; color: #EF4444; }
.btn-sm { font-size: 13px; padding: 5px 10px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }

/* Forms */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.form-input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.15s;
  outline: none;
}
.form-input:focus { border-color: var(--accent); }
.form-select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  background: white;
  cursor: pointer;
  outline: none;
}
.form-error {
  font-size: 13px;
  color: #EF4444;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.form-success {
  font-size: 13px;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 8px;
  display: inline-block;
}
.pro-only { font-size: 11px; font-weight: 600; color: var(--text-secondary); }

/* Applications table */
.apps-table { width: 100%; border-collapse: collapse; }
.apps-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.apps-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #F9FAFB;
  vertical-align: middle;
}
.apps-table tr:last-child td { border-bottom: none; }
.apps-table tr:hover td { background: #FAFAF8; }

/* Stage pills */
.stage-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 3px 10px;
  border-radius: 999px;
}
.stage-pill.applied { background: #EFF6FF; color: #2563EB; }
.stage-pill.interview { background: #FEF3C7; color: #92400E; }
.stage-pill.offer { background: #ECFDF5; color: #065F46; }
.stage-pill.ghosted { background: #F3F4F6; color: #6B7280; }
.stage-pill.rejected { background: #FEF2F2; color: #B91C1C; }

/* Stage dots (pipeline header) */
.stage-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.stage-dot.applied { background: #3B82F6; }
.stage-dot.interview { background: #F59E0B; }
.stage-dot.offer { background: #10B981; }
.stage-dot.ghosted { background: #9CA3AF; }
.stage-dot.rejected { background: #EF4444; }

/* Empty state */
.empty-state {
  padding: 48px;
  text-align: center;
  color: var(--text-secondary);
}
.empty-state p { margin-bottom: 16px; }

/* Pipeline board */
.pipeline-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 400px;
}
.pipeline-col {
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 200px;
  transition: background 0.15s;
}
.pipeline-col.drag-over { background: #FEF3C7; border-color: var(--accent); }
.pipeline-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.col-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 1px 8px;
  color: var(--text-secondary);
}
.pipeline-col-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.pipeline-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
  user-select: none;
}
.pipeline-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: #D1D5DB; }
.pipeline-card.applied { border-left: 3px solid #3B82F6; }
.pipeline-card.interview { border-left: 3px solid #F59E0B; }
.pipeline-card.offer { border-left: 3px solid #10B981; }
.pipeline-card.ghosted { border-left: 3px solid #9CA3AF; }
.pipeline-card.rejected { border-left: 3px solid #EF4444; }
.pcard-role { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.pcard-company { font-size: 12px; color: var(--text-secondary); margin-bottom: 4px; }
.pcard-salary { font-size: 12px; color: #059669; font-weight: 600; }
.pcard-date { font-size: 11px; color: var(--text-secondary); margin-top: 4px; }
.pipeline-empty {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  padding: 20px;
  opacity: 0.5;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,22,41,0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.modal-wide { max-width: 600px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
}
.modal-close:hover { color: var(--text-primary); }
.modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Pro badge */
.pro-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

/* Upgrade card */
.upgrade-card { border: 2px solid var(--accent); background: #FFFBEB; }

/* Limit banner */
.limit-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 150;
  max-width: 560px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Landing: preview pipeline */
.pipeline-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(15,22,41,0.12);
}
.pipeline-preview-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.pipeline-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pipeline-card-preview {
  background: #F9FAFB;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pipeline-card-preview.offer { border-left: 3px solid #10B981; }
.pipeline-card-preview.interview { border-left: 3px solid #F59E0B; }
.pipeline-card-preview.applied { border-left: 3px solid #3B82F6; }
.pcp-role { font-size: 13px; font-weight: 700; color: var(--navy); flex: 1; }
.pcp-company { font-size: 12px; color: var(--text-secondary); }
.pcp-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pcp-badge.offer { background: #ECFDF5; color: #065F46; }
.pcp-badge.interview { background: #FEF3C7; color: #92400E; }
.pcp-badge.applied { background: #EFF6FF; color: #2563EB; }
.pipeline-stats-preview {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.psp-item { background: white; padding: 12px; text-align: center; }
.psp-num { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); }
.psp-label { font-size: 11px; color: var(--text-secondary); }

/* Landing section styles used by index.html */
.section { padding: 80px 32px; }
.section-alt { background: #F9FAFB; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title { font-family: var(--font-display); font-size: clamp(26px,4vw,40px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-sub { color: var(--text-secondary); font-size: 16px; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.step-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
.step-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.feature-item.pro-feature { border-color: #FDE68A; background: #FFFBEB; }
.feature-item h3 { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; margin-top: 12px; }
.feature-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.feature-icon { font-size: 24px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 640px; }
.pricing-card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; position: relative; }
.pricing-card-pro { border-color: var(--accent); }
.pricing-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.pricing-tier { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pricing-amount { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-amount span { font-size: 16px; font-weight: 500; color: var(--text-secondary); }
.pricing-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; margin-top: 4px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 13px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid #F3F4F6; }
.pricing-features li:last-child { border-bottom: none; }
.btn-outline { display: inline-block; background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 20px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: border-color 0.15s, background 0.15s; }
.btn-outline:hover { border-color: var(--text-secondary); }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .pipeline-board { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page { padding: 20px; }
  .app-nav-inner { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── RESTYLED LANDING PAGE ───────────────────────────────────────────────── */

/* NAV */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E5E7EB;
}
.lp-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.lp-nav-link:hover { color: var(--navy); background: #F3F4F6; }
.lp-cta-btn {
  font-size: 14px;
  font-weight: 700;
  background: #F59E0B;
  color: #0F1629;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
  font-family: var(--font-body);
}
.lp-cta-btn:hover { background: #fbbf24; transform: translateY(-1px); }

/* HERO */
.lp-hero {
  background: #0F1629;
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(245,158,11,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(59,130,246,0.06) 0%, transparent 60%);
  padding: 64px 32px 80px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

/* badge */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.lp-badge-dot {
  width: 6px;
  height: 6px;
  background: #F59E0B;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* headline */
.lp-headline {
  font-family: 'Instrument Serif', 'Syne', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: #F5F5F3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.lp-headline em {
  font-style: italic;
  color: #F59E0B;
}

/* subhead */
.lp-subhead {
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 28px;
  font-family: var(--font-body);
}

/* social proof */
.lp-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.lp-sp-avatars {
  display: flex;
}
.lp-sp-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #0F1629;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
  flex-shrink: 0;
}
.lp-sp-av:last-child { margin-right: 0; }
.lp-sp-text {
  font-size: 13px;
  color: #9CA3AF;
  font-family: var(--font-body);
  padding-left: 14px;
}

/* hero actions */
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F59E0B;
  color: #0F1629;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.lp-btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.lp-btn-primary-lg {
  font-size: 16px;
  padding: 15px 28px;
}
.lp-btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: #9CA3AF;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.lp-btn-ghost:hover { color: #F5F5F3; }
.lp-hero-note {
  font-size: 12px;
  color: #6B7280;
  font-family: var(--font-body);
}

/* PIPELINE CARD (hero visual) */
.lp-pipeline-card {
  background: #161D35;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.lp-pipeline-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.5), transparent);
  border-radius: 999px;
}
.lp-pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-pc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #E8EAF0;
}
.lp-pc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  font-family: var(--font-body);
}
.lp-pc-live-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.lp-pc-stages {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lp-stage-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-body);
}
.lp-stage-tag.applied { background: rgba(59,130,246,0.15); color: #93c5fd; }
.lp-stage-tag.interview { background: rgba(245,158,11,0.15); color: #fcd34d; }
.lp-stage-tag.offer { background: rgba(34,197,94,0.15); color: #86efac; }
.lp-stage-sep { color: rgba(255,255,255,0.25); font-size: 13px; }
.lp-pc-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.lp-app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 11px 14px;
  transition: background 0.15s;
}
.lp-app-card:hover { background: rgba(255,255,255,0.07); }
.lp-app-card.offer { border-left: 3px solid #22c55e; }
.lp-app-card.interview { border-left: 3px solid #F59E0B; }
.lp-app-card.applied { border-left: 3px solid #3b82f6; }
.lp-app-card.reminder { border-left: 3px solid #ef4444; }
.lp-app-role { font-size: 13px; font-weight: 700; color: #E8EAF0; margin-bottom: 2px; font-family: var(--font-body); }
.lp-app-company { font-size: 11px; color: #6B7491; font-family: var(--font-body); }
.lp-app-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.lp-app-badge.offer { background: rgba(34,197,94,0.15); color: #86efac; }
.lp-app-badge.interview { background: rgba(245,158,11,0.15); color: #fcd34d; }
.lp-app-badge.applied { background: rgba(59,130,246,0.15); color: #93c5fd; }
.lp-app-badge.reminder { background: rgba(239,68,68,0.15); color: #fca5a5; }
.lp-pc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.lp-pcs-item { background: rgba(255,255,255,0.03); padding: 12px; text-align: center; }
.lp-pcs-num { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #E8EAF0; }
.lp-pcs-label { font-size: 11px; color: #6B7491; font-family: var(--font-body); }

/* SECTION SHARED */
.lp-section {
  padding: 88px 32px;
}
.lp-section-mid {
  background: #FAFAF8;
}
.lp-section-dark {
  background: var(--navy);
}
.lp-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.lp-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.lp-section-label-amber { color: #F59E0B; }
.lp-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 52px;
  line-height: 1.1;
  max-width: 600px;
}
.lp-section-title-light { color: #F5F5F3; }

/* HOW IT WORKS steps */
.lp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}
.lp-step {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-step:hover {
  box-shadow: 0 8px 32px rgba(15,22,41,0.08);
  transform: translateY(-2px);
}
.lp-step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F59E0B;
  margin-bottom: 16px;
}
.lp-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.lp-step p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}
.lp-step-arrow {
  font-size: 24px;
  color: #D1D5DB;
  padding-top: 44px;
  text-align: center;
}

/* FEATURES grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.lp-feat {
  background: rgba(255,255,255,0.04);
  padding: 32px;
  position: relative;
  transition: background 0.15s;
}
.lp-feat:hover { background: rgba(255,255,255,0.07); }
.lp-feat-pro {
  background: rgba(245,158,11,0.04);
}
.lp-feat-pro:hover { background: rgba(245,158,11,0.07); }
.lp-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lp-feat-icon-pro { background: rgba(245,158,11,0.15); }
.lp-feat h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #F5F5F3;
  margin-bottom: 8px;
}
.lp-feat p {
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.7;
}
.lp-pro-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(245,158,11,0.2);
  color: #F59E0B;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* PRICING */
.lp-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
}
.lp-plan {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s;
}
.lp-plan:hover { box-shadow: 0 8px 32px rgba(15,22,41,0.08); }
.lp-plan-pro {
  border-color: #F59E0B;
  box-shadow: 0 4px 24px rgba(245,158,11,0.1);
}
.lp-plan-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #0F1629;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.lp-plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.lp-plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.lp-plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: #6B7280;
}
.lp-plan-desc {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  margin-top: 6px;
}
.lp-plan-features {
  list-style: none;
  margin-bottom: 28px;
}
.lp-plan-features li {
  font-size: 13px;
  color: #4B5563;
  padding: 7px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}
.lp-plan-features li::before {
  content: '✓';
  color: #F59E0B;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-plan-features li:last-child { border-bottom: none; }
.lp-plan-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: #F59E0B;
  color: #0F1629;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.lp-plan-btn-primary:hover { background: #fbbf24; }
.lp-plan-btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.lp-plan-btn-outline:hover { border-color: #9CA3AF; background: #F9FAFB; }
.lp-plan-annual {
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-body);
}
.lp-plan-annual a { color: #F59E0B; text-decoration: none; }
.lp-plan-annual a:hover { text-decoration: underline; }

/* FINAL CTA */
.lp-cta-section {
  background: #0F1629;
  background-image: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245,158,11,0.1) 0%, transparent 70%);
  padding: 96px 32px;
  text-align: center;
}
.lp-cta-inner { max-width: 560px; margin: 0 auto; }
.lp-cta-headline {
  font-family: 'Instrument Serif', 'Syne', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #F5F5F3;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lp-cta-sub {
  font-size: 16px;
  color: #9CA3AF;
  margin-bottom: 36px;
  font-family: var(--font-body);
}

/* FOOTER */
.lp-footer {
  background: #0F1629;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 32px;
  text-align: center;
  color: #6B7280;
  font-size: 13px;
  font-family: var(--font-body);
}
.lp-footer a { color: #6B7280; text-decoration: none; }
.lp-footer a:hover { color: #9CA3AF; }

/* LANDING RESPONSIVE */
@media (max-width: 960px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero { padding: 60px 24px 72px; }
  .lp-headline { font-size: 40px; }
  .lp-subhead { max-width: 100%; }
  .lp-features { grid-template-columns: 1fr 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step-arrow { display: none; }
}
@media (max-width: 640px) {
  .lp-nav-inner { padding: 12px 20px; }
  .lp-section { padding: 64px 20px; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-hero-actions { flex-direction: column; align-items: flex-start; }
  .lp-cta-section { padding: 72px 20px; }
  .lp-pc-stages { display: none; }
}
