:root {
  --bg: #141414;
  --surface: #1e1e1e;
  --surface-2: #262626;
  --accent: #F59E0B;
  --accent-dim: #B47208;
  --text: #FAFAF8;
  --text-muted: #A8A29E;
  --border: #2e2e2e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); }
.nav-tag { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-pricing { display: flex; gap: 16px; flex-wrap: wrap; }
.pricing-pill {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 22px;
}
.pill-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.pill-price { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); }

/* MOCKUP */
.hero-mockup { position: relative; }
.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.mockup-url { font-size: 11px; color: var(--text-muted); margin-left: 8px; font-family: monospace; }
.mockup-body { padding: 24px; }
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mock-logo { width: 80px; height: 28px; background: var(--surface-2); border-radius: 6px; }
.mock-nav { display: flex; gap: 12px; }
.mock-nav-item { width: 48px; height: 12px; background: var(--surface-2); border-radius: 4px; }
.mock-hero-text { height: 28px; width: 70%; background: var(--surface-2); border-radius: 6px; margin-bottom: 12px; }
.mock-hero-sub { height: 14px; width: 90%; background: var(--surface-2); border-radius: 4px; margin-bottom: 24px; opacity: 0.6; }
.mock-chat-widget {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.chat-bubble {
  background: var(--accent);
  color: #000;
  border-radius: 10px 10px 2px 10px;
  padding: 10px 14px;
  font-size: 12px;
  margin-bottom: 12px;
  display: inline-block;
}
.chat-typing::after {
  content: '...';
  animation: typing 1s infinite;
}
@keyframes typing { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }
.chat-response p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.chat-options { display: flex; gap: 8px; flex-wrap: wrap; }
.chat-opt { background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 11px; color: var(--text); cursor: pointer; }
.mock-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-dot { width: 6px; height: 6px; background: #16a34a; border-radius: 50%; display: block; }

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-lead { grid-column: span 2; background: linear-gradient(135deg, var(--surface) 0%, #221e12 100%); border-color: var(--accent-dim); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #000;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* PROCESS */
.process {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process .section-title { max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 60px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.step { flex: 1; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: 32px 40px 0;
  align-self: flex-start;
  margin-top: 40px;
}

/* NICHES */
.niches {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.niches-sub { font-size: 18px; color: var(--text-muted); margin-top: -32px; margin-bottom: 48px; max-width: 500px; }
.niche-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.niche-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.niche-icon { color: var(--accent); flex-shrink: 0; }
.niche-item--active { border-color: var(--accent); background: linear-gradient(135deg, var(--surface) 0%, #221e12 100%); }
.niches-note { font-size: 14px; color: var(--text-muted); font-style: italic; }

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.outcomes-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; }
.outcomes-stats { display: flex; flex-direction: column; gap: 28px; }
.stat { display: flex; align-items: baseline; gap: 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 80px;
}
.stat-label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.outcomes-quote { border-left: 3px solid var(--accent); padding-left: 32px; }
.outcomes-quote blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.outcomes-quote cite { font-size: 13px; color: var(--text-muted); font-style: normal; }

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub { font-size: 18px; color: var(--text-muted); max-width: 500px; margin-bottom: 48px; line-height: 1.7; }
.closing-block {
  background: var(--surface);
  border: 1px solid var(--accent-dim);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 600px;
}
.closing-product {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.closing-product .accent { color: var(--accent); }

/* PRICING */
.pricing-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.pricing-card--highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, #221e12 100%);
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-note { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* FOOTER */
.footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); }
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-copy { margin-left: auto; font-size: 12px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-lead { grid-column: span 1; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-divider { display: none; }
  .niche-list { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .features, .process, .niches, .outcomes, .closing, .pricing-section { padding: 80px 20px; }
  .niche-list { grid-template-columns: 1fr; }
  .navbar { padding: 16px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
}