:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --amber: #f59e0b;
  --amber-dim: #d97706;
  --amber-glow: rgba(245, 158, 11, 0.15);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--slate-900);
  color: var(--slate-300);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 0.02em; }
.nav-tagline { font-size: 13px; color: var(--slate-500); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.wire {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--amber-glow), transparent);
  height: 1px;
}
.wire-1 { top: 25%; left: -10%; width: 60%; transform: rotate(-8deg); }
.wire-2 { top: 60%; left: -5%; width: 50%; transform: rotate(5deg); }
.wire-3 { top: 80%; left: 10%; width: 40%; transform: rotate(-3deg); }
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 { width: 400px; height: 400px; background: rgba(245, 158, 11, 0.07); top: 10%; right: 0; }
.glow-2 { width: 300px; height: 300px; background: rgba(245, 158, 11, 0.04); bottom: 10%; left: 20%; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-400);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 6px 14px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.06);
}

/* DASHBOARD MOCK */
.hero-visual { display: flex; justify-content: flex-end; position: relative; z-index: 1; }
.dashboard-mock {
  width: 100%;
  max-width: 400px;
  background: var(--slate-800);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.mock-header { display: flex; gap: 6px; padding: 14px 16px; border-bottom: 1px solid rgba(148,163,184,0.08); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-700); }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-row { display: flex; flex-direction: column; gap: 8px; }
.mock-card {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--slate-900);
  border: 1px solid rgba(148,163,184,0.06);
}
.mock-card.active { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.06); }
.card-label { font-size: 13px; color: #fff; font-weight: 500; margin-bottom: 4px; font-family: 'Barlow Condensed', sans-serif; }
.card-status { font-size: 11px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.in-progress { color: var(--amber); }
.scheduled { color: var(--slate-500); }
.mock-metrics { display: flex; gap: 0; border: 1px solid rgba(148,163,184,0.1); border-radius: 8px; overflow: hidden; }
.metric { flex: 1; padding: 10px; text-align: center; border-right: 1px solid rgba(148,163,184,0.08); }
.metric:last-child { border-right: none; }
.metric-val { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: #fff; }
.metric-key { display: block; font-size: 10px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.mock-invoice { background: var(--slate-900); border-radius: 8px; padding: 12px 14px; border: 1px solid rgba(245,158,11,0.2); }
.invoice-header { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.invoice-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.line { display: block; height: 8px; border-radius: 4px; background: var(--slate-700); width: 100%; }
.line.short { width: 65%; background: var(--slate-700); }
.invoice-cta { font-size: 11px; color: var(--amber); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.05em; }

/* STATS BAND */
.stats-band { background: var(--slate-800); border-top: 1px solid rgba(148,163,184,0.08); border-bottom: 1px solid rgba(148,163,184,0.08); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--amber); }
.stat-desc { font-size: 12px; color: var(--slate-500); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(148,163,184,0.1); }

/* MANIFESTO */
.manifesto { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.manifesto-inner { max-width: 680px; }
.manifesto-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.manifesto-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 28px; }
.manifesto-body { font-size: 16px; line-height: 1.75; color: var(--slate-400); margin-bottom: 16px; }

/* FEATURES */
.features { padding: 80px 48px; background: var(--slate-900); }
.features-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.feature { }
.feature-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); border-radius: 10px; color: var(--amber); margin-bottom: 16px; }
.feature-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: 0.01em; }
.feature-desc { font-size: 14px; line-height: 1.65; color: var(--slate-500); }

/* HOW IT WORKS */
.howitworks { padding: 100px 48px; }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.hiw-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.hiw-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 3.5vw, 46px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 60px; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 700; color: rgba(245,158,11,0.15); line-height: 1; margin-bottom: 16px; }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 14px; line-height: 1.65; color: var(--slate-500); }
.step-connector { width: 60px; flex-shrink: 0; height: 1px; margin-top: 24px; background: linear-gradient(90deg, rgba(245,158,11,0.4), rgba(245,158,11,0.1)); }

/* CLOSING */
.closing { padding: 100px 48px; background: var(--slate-800); }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); border-radius: 20px; padding: 6px 16px; font-size: 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; color: var(--amber); letter-spacing: 0.08em; margin-bottom: 32px; }
.closing-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.closing-body { font-size: 16px; color: var(--slate-400); max-width: 480px; margin: 0 auto 48px; line-height: 1.65; }
.closing-pricing { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; }
.price-block { text-align: center; padding: 24px 32px; border: 1px solid rgba(148,163,184,0.12); border-radius: 12px; min-width: 180px; }
.price-block.featured { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.05); }
.price-name { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; color: #fff; }
.price-amount span { font-size: 18px; color: var(--slate-500); }
.price-desc { font-size: 12px; color: var(--slate-500); margin-top: 6px; }
.closing-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate-600); }

/* FOOTER */
.footer { border-top: 1px solid rgba(148,163,184,0.08); padding: 40px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 8px; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; }
.footer-tagline { font-size: 13px; color: var(--slate-600); }
.footer-links { display: flex; gap: 24px; }
.footer-links span { font-size: 13px; color: var(--slate-500); cursor: pointer; }
.footer-links span:hover { color: var(--slate-300); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 48px; }
  .hero-visual { justify-content: center; }
  .dashboard-mock { max-width: 360px; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 40px; height: 1px; margin-top: 0; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .closing-pricing { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .manifesto, .features, .howitworks, .closing { padding-left: 24px; padding-right: 24px; }
  .stats-inner { padding: 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .features-inner { grid-template-columns: 1fr; }
}