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

:root {
  --bg: #faf8f5;
  --bg-alt: #f3f0ea;
  --fg: #111110;
  --fg-muted: #6b6560;
  --fg-faint: #a09a93;
  --accent: #c85c0c;
  --accent-light: #fdf0e6;
  --accent-2: #2c5f2e;
  --accent-2-light: #edf7ee;
  --accent-3: #1a3a6b;
  --accent-3-light: #eef2fa;
  --border: #e8e3db;
  --surface: #ffffff;
  --shadow: 0 2px 16px rgba(17,17,16,0.08), 0 1px 4px rgba(17,17,16,0.04);
  --radius: 16px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}
.nav-badge {
  font-size: 0.78rem;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 64px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-one-liner {
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  width: fit-content;
}
.stat {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: #b0500a;
  transform: translateY(-1px);
}
.btn-note {
  font-size: 0.8rem;
  color: var(--fg-faint);
}

/* ===== WIDGET ===== */
.hero-visual {
  position: relative;
}
.widget-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.widget-header {
  background: linear-gradient(135deg, #fdf8f3 0%, #f8f4ee 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.widget-dots {
  display: flex;
  gap: 5px;
}
.widget-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}
.widget-dots span:first-child { background: #ff5f57; }
.widget-dots span:nth-child(2) { background: #febc2e; }
.widget-dots span:last-child { background: #28c840; }
.widget-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.widget-body { padding: 20px; }
.task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--accent-light);
  margin-bottom: 16px;
  border: 1px solid #f5deb3;
}
.task-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.task-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.task-name {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--fg);
}
.task-meta {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.task-status { position: relative; }
.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ring 1.8s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.progress-rail {
  height: 5px;
  background: var(--bg-alt);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e8790e);
  border-radius: 10px;
  transition: width 0.6s ease;
}
.step-list { display: flex; flex-direction: column; gap: 10px; }
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.step.done { color: var(--fg); }
.step.active { color: var(--accent); font-weight: 500; }
.step-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.step-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.widget-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--fg-faint);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.time-saved-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--accent-2);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(44, 95, 46, 0.25);
}
.saved-big {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.saved-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

/* ===== PROOF ===== */
.proof {
  background: var(--fg);
  color: white;
  padding: 48px;
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-case-study {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 20px;
}
.proof-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.proof-big {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
}
.proof-big-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-family: var(--font-head);
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.proof-case-text { flex: 1; }
.proof-firm {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-result {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  line-height: 1.4;
}
.proof-metric {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.proof-cta-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== FEATURES ===== */
.features { padding: 96px 48px; }
.features-header { max-width: 1200px; margin: 0 auto 56px; }
.features-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.features-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-number {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-card p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.65; }
.accent-border-1 { border-top: 3px solid var(--accent); }
.accent-border-2 { border-top: 3px solid var(--accent-2); }
.accent-border-3 { border-top: 3px solid var(--accent-3); }

/* ===== OUTCOMES ===== */
.outcomes {
  background: linear-gradient(160deg, #fdf8f3 0%, var(--bg-alt) 100%);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-quote {
  margin-bottom: 56px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 12px;
}
.quote-text {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
  font-family: var(--font-head);
  font-weight: 400;
  margin-bottom: 16px;
  max-width: 720px;
}
.quote-attr { font-size: 0.82rem; color: var(--fg-faint); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outcome-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.outcome-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--fg);
  color: white;
  padding: 96px 48px;
  text-align: center;
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.9);
}

/* ===== FOOTER ===== */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 8px; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-left: 16px; }
.footer-links { display: flex; gap: 24px; margin-bottom: 16px; font-size: 0.82rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.75rem; color: var(--fg-faint); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
}
@media (max-width: 640px) {
  .hero, .features, .outcomes, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding-left: 24px; padding-right: 24px; }
  .proof { padding: 32px 24px; }
  .hero-headline { font-size: 2.8rem; }
  .proof-tags { gap: 6px; }
  .tag { font-size: 0.75rem; padding: 5px 12px; }
}