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

:root {
  --bg: #0f1629;
  --surface: #161c2e;
  --surface-2: #1e2540;
  --fg: #f0f2f8;
  --fg-muted: #8892a8;
  --accent: #f59e0b;
  --accent-dim: #c27800;
  --accent-glow: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 242, 248, 0.08);
  --border-strong: rgba(240, 242, 248, 0.15);
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
.font-serif { font-family: 'DM Serif Display', Georgia, serif; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(15, 22, 41, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.06);
}
.shape-ring-1 {
  width: 700px;
  height: 700px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}
.shape-ring-2 {
  width: 400px;
  height: 400px;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(245, 158, 11, 0.1);
}

.shape-dot-cluster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}
.dot-1 { top: 20%; left: 15%; }
.dot-2 { top: 35%; left: 25%; width: 2px; height: 2px; opacity: 0.2; }
.dot-3 { top: 60%; left: 10%; width: 4px; height: 4px; }
.dot-4 { top: 75%; left: 30%; width: 2px; height: 2px; opacity: 0.15; }
.dot-5 { top: 45%; left: 5%; width: 2px; height: 2px; opacity: 0.25; }

/* Ambient gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.label-dot {
  width: 6px;
  height: 6px;
  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: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}

.stat {
  padding: 24px 36px;
}

.stat-number {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  background: var(--border-strong);
  align-self: stretch;
}

/* === PROBLEM === */
.problem {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.problem-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.problem-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Map card visual */
.map-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.map-search-icon {
  color: var(--fg-muted);
}

.map-search-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.map-result {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.map-result:last-child { border-bottom: none; }

.result-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.result-stars {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: -1px;
}

.result-reviews {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.result-no-website-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.result-has-website-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.result-no-site .result-name { color: var(--fg); }
.result-has-site .result-name { color: var(--fg-muted); }

/* === SECTION EYEBROW === */
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

/* === HOW === */
.how {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 36px;
}

.step-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  height: 1px;
  background: var(--border-strong);
  align-self: 80px;
  margin-top: 50px;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* === WHY === */
.why {
  padding: 100px 48px;
}

.why-inner { max-width: 1200px; margin: 0 auto; }

.why-header { margin-bottom: 60px; }

.why-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}

.why-card:hover { border-color: var(--border-strong); }

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.why-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.why-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === PRICING === */
.pricing {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing-inner { max-width: 900px; margin: 0 auto; }

.pricing-header { text-align: center; margin-bottom: 56px; }

.pricing-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 36px;
}

.pricing-card-primary {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(245,158,11,0.08), transparent);
}

.pricing-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card-primary .pricing-amount { color: var(--accent); }

.pricing-per {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-breaker {
  display: flex;
  align-items: center;
  gap: 20px;
}

.breaker-line {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

.breaker-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

.closing-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  color: var(--fg);
}

.footer-name { color: var(--fg); }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 32px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .how-steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector { display: none; }
}

@media (max-width: 600px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .how, .why, .pricing, .closing { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
