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

:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F1EC;
  --dark: #0B0F1A;
  --ink: #1C1E26;
  --mid: #6B7280;
  --border: #E5E4DE;
  --accent: #D4FF4F;
  --accent-dark: #A8D93F;
  --hot: #FF4D4D;
  --warm: #FF9A3D;
  --cold: #94A3B8;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --card-radius: 12px;
}

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

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 20px; color: var(--dark);
  letter-spacing: -0.5px;
}
.nav-tagline { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--mid); font-weight: 500; letter-spacing: 0.3px; }

/* HERO */
.hero {
  padding: 72px 48px 64px;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,255,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  max-width: 100px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* DASHBOARD MOCKUP */
.dashboard-mockup {
  background: #111827;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  font-family: 'Manrope', sans-serif;
}
.mockup-topbar {
  background: #1F2937;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FEBC2E; }
.mockup-dot.green { background: #28C840; }
.mockup-label { font-size: 11px; color: rgba(255,255,255,0.3); margin-left: 8px; }
.mockup-body { padding: 20px; }
.mockup-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lead-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}
.lead-score { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.badge-hot { background: rgba(255,77,77,0.2); color: #FF6B6B; }
.badge-warm { background: rgba(255,154,61,0.2); color: #FFAD5C; }
.badge-cold { background: rgba(148,163,184,0.15); color: #94A3B8; }
.lead-info { flex: 1; }
.lead-name { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; }
.lead-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.action-chip { font-size: 10px; padding: 3px 8px; border-radius: 4px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); white-space: nowrap; }
.action-chip.sent { background: rgba(40,200,64,0.15); color: #28C840; }
.action-chip.renewed { background: rgba(212,255,79,0.15); color: var(--accent); }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-box {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}
.metric-val { font-size: 22px; font-weight: 800; color: var(--accent); }
.metric-label { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 4px; line-height: 1.3; }

/* NIGHT PROBLEM */
.nightproblem {
  padding: 80px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.nightproblem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.np-headline {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}
.np-body {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.clock-widget {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}
.clock-time {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1;
}
.clock-zone {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
  margin-bottom: 20px;
}
.clock-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.clock-event { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(229,228,222,0.5); }
.clock-event:last-of-type { border-bottom: none; }
.event-label { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--ink); font-weight: 500; }
.event-time { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--mid); }
.event-time.done { color: #28C840; font-weight: 600; }
.clock-status {
  margin-top: 16px;
  background: var(--dark);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

/* FEATURES */
.features {
  padding: 80px 48px;
  background: var(--bg);
}
.features-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(212,255,79,0.12);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.features-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto;
  color: var(--dark);
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--mid); line-height: 1.65; }

/* HOW IT WORKS */
.howitworks {
  padding: 80px 48px;
  background: var(--dark);
  color: white;
}
.hiw-header { text-align: center; margin-bottom: 56px; }
.hiw-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: white;
}
.hiw-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.step { flex: 1; }
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.step-title { font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.step-desc { font-family: 'Manrope', sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.step-connector {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 24px;
  margin-top: 24px;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.closing-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  color: var(--mid);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--dark);
  color: rgba(255,255,255,0.4);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand { display: flex; align-items: center; gap: 8px; color: white; }
.footer-name { font-size: 16px; font-weight: 700; }
.footer-tagline { font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy { font-family: 'Manrope', sans-serif; font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nightproblem-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 24px 40px; }
  .nightproblem { padding: 48px 24px; }
  .features { padding: 48px 24px; }
  .howitworks { padding: 48px 24px; }
  .closing { padding: 64px 24px; }
  .hero-headline { font-size: 38px; }
  .features-title { font-size: 30px; }
  .closing-headline { font-size: 30px; }
  .hiw-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 2px; margin: 0; }
  .nav { padding: 16px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-proof-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
}