:root {
  --bg: #0c0c0e;
  --bg-surface: #141416;
  --bg-elevated: #1c1c20;
  --fg: #f4f4f5;
  --fg-muted: #a1a1aa;
  --accent: #F97316;
  --accent-dim: #fb923c;
  --amber: #fbbf24;
  --green: #10B981;
  --border: #27272a;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 80px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* FLOW DIAGRAM */
.flow-diagram {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
}
.flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.flow-icon.amber { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.3); color: var(--accent); }
.flow-label { font-size: 14px; font-weight: 500; color: var(--fg); }
.flow-arrow { color: var(--accent); }
.flow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.flow-branch { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.branch-label { font-size: 12px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.branch-arrow { flex: 1; display: flex; align-items: center; justify-content: center; }
.platform-tags { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.tag {
  display: block;
  text-align: center;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.tag-google { background: rgba(234,67,53,0.15); color: #EA4335; border: 1px solid rgba(234,67,53,0.2); }
.tag-yelp { background: rgba(199,0,26,0.15); color: #c7001a; border: 1px solid rgba(199,0,26,0.2); }
.tag-fb { background: rgba(24,119,242,0.15); color: #1877F2; border: 1px solid rgba(24,119,242,0.2); }
.alert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

/* SECTION COMMON */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* DASHBOARD MOCKUP */
.dashboard-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.dashboard-mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto 32px;
}
.mockup-bar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-title { font-size: 13px; color: var(--fg-muted); margin-left: 12px; font-family: 'Figtree', sans-serif; }
.mockup-body { display: grid; grid-template-columns: 160px 1fr; }
.dash-sidebar {
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.dash-nav-item {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
}
.dash-nav-item.active { color: var(--accent); font-weight: 600; background: rgba(249,115,22,0.08); border-left: 2px solid var(--accent); }
.dash-main { padding: 20px; }
.dash-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.dash-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--fg); }
.dash-badge { background: var(--green); color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.dash-metrics { display: flex; gap: 24px; margin-bottom: 24px; }
.dash-metric-val { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--fg); }
.dash-metric-val.green { color: var(--green); }
.dash-metric-val.amber { color: var(--accent); }
.dash-metric-lbl { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 6px;
}
.chart-bar {
  flex: 1;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: 0.25;
}
.chart-label { font-size: 11px; color: var(--fg-muted); margin-bottom: 20px; }
.dash-alerts { display: flex; flex-direction: column; gap: 8px; }
.dash-alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--fg-muted);
}
.alert-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.alert-dot.amber { background: var(--accent); }
.alert-dot.green { background: var(--green); }
.alert-btn {
  margin-left: auto;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.posted-tag { margin-left: auto; color: var(--green); font-size: 12px; font-weight: 600; }
.dashboard-caption { text-align: center; }
.dashboard-caption h3 { font-size: 22px; margin-bottom: 10px; }
.dashboard-caption p { color: var(--fg-muted); font-size: 16px; }

/* FEATURES */
.features {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-surface);
  padding: 32px;
}
.feature-main { grid-row: span 2; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.pricing-note { font-size: 12px; color: var(--fg-muted); }

/* CLOSING */
.closing {
  padding: 80px 0;
}
.closing-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.closing-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-content p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 22px; min-width: 60px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .mockup-body { grid-template-columns: 1fr; }
  .dash-sidebar { border-right: none; border-bottom: 1px solid var(--border); display: flex; gap: 8px; padding: 12px 16px; overflow-x: auto; }
  .dash-nav-item { white-space: nowrap; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-main { grid-row: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .flow-split { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 16px 40px; }
  .flow-diagram { padding: 20px; }
  .dash-metrics { flex-direction: column; gap: 16px; }
}