:root {
  --bg-dark: #0f1923;
  --bg-cream: #f7f4ee;
  --accent: #d4f04a;
  --accent-dark: #b8d030;
  --text-dark: #0f1923;
  --text-light: #f7f4ee;
  --text-muted: #6b7280;
  --text-muted-light: #9ca3af;
  --card-bg: #ffffff;
  --card-border: #e5e1d8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,25,35,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted-light); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-light); }

/* HERO */
.hero {
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-pricing {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 100px;
}

/* APP CARD UI MOCKUP */
.app-card {
  background: #1a2533;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
}
.app-card-header {
  background: #141e2a;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.app-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-dot.red { background: #ff5f57; }
.app-dot.yellow { background: #febc2e; }
.app-dot.green { background: #28c840; }
.app-title { margin-left: 8px; font-size: 0.72rem; color: #5a6a7a; font-weight: 500; }
.app-body { display: flex; height: 300px; }
.app-sidebar { width: 90px; background: #141e2a; border-right: 1px solid rgba(255,255,255,0.05); padding: 16px 0; flex-shrink: 0; }
.sidebar-item { display: flex; align-items: center; gap: 7px; padding: 9px 14px; font-size: 0.68rem; color: #3d5060; font-weight: 500; cursor: pointer; }
.sidebar-item.active { color: var(--accent); background: rgba(212,240,74,0.07); border-left: 2px solid var(--accent); }
.sidebar-icon { width: 13px; height: 13px; border-radius: 3px; background: currentColor; opacity: 0.35; }
.sidebar-item.active .sidebar-icon { opacity: 1; }
.app-main { flex: 1; padding: 16px; overflow: hidden; }
.app-section-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; color: #3d5060; margin-bottom: 10px; }
.job-card { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 9px 12px; margin-bottom: 7px; border: 1px solid rgba(255,255,255,0.04); }
.job-card.muted { opacity: 0.4; }
.job-time { font-size: 0.62rem; font-weight: 600; color: var(--accent); width: 55px; flex-shrink: 0; }
.job-info { flex: 1; min-width: 0; }
.job-name { font-size: 0.75rem; font-weight: 600; color: #d8e4ec; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-meta { font-size: 0.65rem; color: #5a7080; margin-top: 2px; }
.job-status { font-size: 0.58rem; font-weight: 600; padding: 3px 7px; border-radius: 100px; flex-shrink: 0; }
.job-status.done { background: rgba(40,200,64,0.15); color: #28c840; }
.job-status.active { background: rgba(212,240,74,0.12); color: var(--accent); }
.job-status.upcoming { background: rgba(255,255,255,0.07); color: #5a7080; }
.app-footer { background: #141e2a; padding: 12px 18px; border-top: 1px solid rgba(255,255,255,0.05); }
.invoice-preview { display: flex; justify-content: space-between; align-items: center; }
.inv-label { font-size: 0.62rem; color: #3d5060; }
.inv-amount { font-size: 0.7rem; color: #6a8090; font-weight: 500; }

/* PROOF BAND */
.proof { background: var(--accent); padding: 32px 0; }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.proof-stats { display: flex; align-items: center; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 56px; }
.stat-number { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900; color: var(--bg-dark); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.72rem; color: rgba(15,25,35,0.6); margin-top: 6px; font-weight: 500; text-align: center; }
.stat-divider { width: 1px; height: 44px; background: rgba(15,25,35,0.15); }

/* FEATURES */
.features { padding: 100px 32px; background: var(--bg-cream); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
.section-headline { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text-dark); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 56px; max-width: 560px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card { background: var(--card-bg); padding: 36px 28px; border: 1px solid var(--card-border); }
.feature-icon { color: var(--accent-dark); margin-bottom: 18px; }
.feature-card h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* OUTCOMES */
.outcomes { padding: 100px 32px; background: #f0ede6; }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; }
.outcome-card { background: var(--card-bg); padding: 40px 28px; border: 1px solid var(--card-border); text-align: center; }
.outcome-visual { margin-bottom: 24px; }
.time-saved { display: inline-flex; align-items: baseline; gap: 4px; }
.big-number { font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 900; color: var(--accent-dark); line-height: 1; letter-spacing: -0.04em; }
.unit { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 400; color: var(--accent-dark); font-style: italic; }
.outcome-card h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.outcome-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.outcomes-quote { background: var(--bg-dark); padding: 52px 60px; border-radius: 4px; }
.outcomes-quote blockquote { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 400; font-style: italic; color: var(--text-light); line-height: 1.4; max-width: 780px; margin: 0 auto 20px; text-align: center; }
.outcomes-quote cite { display: block; text-align: center; font-size: 0.78rem; color: var(--text-muted-light); font-style: normal; }

/* MANIFESTO */
.manifesto { padding: 100px 32px; background: var(--bg-dark); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-content { max-width: 660px; margin: 0 auto; }
.manifesto-content h2 { font-family: 'Fraunces', serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; color: var(--text-light); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 28px; }
.manifesto-content p { font-size: 1rem; color: var(--text-muted-light); line-height: 1.8; margin-bottom: 20px; }

/* CLOSING */
.closing { padding: 100px 32px; background: var(--accent); }
.closing-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.closing h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; color: var(--bg-dark); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.closing p { font-size: 1rem; color: rgba(15,25,35,0.68); line-height: 1.7; margin-bottom: 40px; }
.closing-pillars { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 48px; }
.pillar { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--bg-dark); }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-dark); opacity: 0.4; }
.closing-tagline { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; font-style: italic; color: var(--bg-dark); margin-bottom: 0; }

/* FOOTER */
.footer { background: var(--bg-dark); padding: 48px 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; color: var(--text-light); margin-bottom: 8px; }
.footer-copy { font-size: 0.875rem; color: var(--text-muted-light); }
.footer-legal { font-size: 0.72rem; color: #3d4f5f; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .outcomes-quote { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .closing-pillars { flex-direction: column; align-items: center; gap: 16px; }
  .hero { padding: 90px 20px 60px; }
  .features, .outcomes, .manifesto, .closing { padding: 64px 20px; }
  .outcomes-quote blockquote { font-size: 1.15rem; }
  .nav-links { display: none; }
}
