:root {
  --bg: #0f1f17;
  --bg-2: #152b21;
  --fg: #f0ede8;
  --fg-muted: #a8b5ad;
  --accent: #e8a83a;
  --accent-dim: #c8892e;
  --green-deep: #1a4a3a;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 60%, #0d1f14 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,168,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,168,58,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-star {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}
.proof-text {
  font-size: 14px;
  color: var(--fg-muted);
}

/* REVIEW WIDGET */
.review-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.06) inset;
}
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.widget-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
}
.widget-sentiment {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.widget-sentiment.positive {
  background: rgba(76,175,80,0.15);
  color: #81c784;
}
.widget-review {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}
.widget-review-text {
  font-size: 14px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 10px;
}
.widget-reviewer {
  font-size: 12px;
  color: var(--fg-muted);
}
.widget-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.widget-divider::before, .widget-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.widget-response {
  background: rgba(232,168,58,0.08);
  border: 1px solid rgba(232,168,58,0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}
.widget-response p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
}
.widget-footer {
  display: flex;
  gap: 10px;
}
.btn-approve, .btn-edit {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-approve {
  background: var(--accent);
  color: #0f1f17;
}
.btn-edit {
  background: var(--surface);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

/* PROBLEM */
.problem {
  padding: 96px 48px;
  background: var(--bg-2);
}
.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.problem-label, .features-label, .pricing-label, .demo-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.problem-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 64px;
}
.problem-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 96px 48px;
  background: var(--bg);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-label {
  text-align: center;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}
.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, background 0.2s;
}
.feature-card:hover {
  border-color: rgba(232,168,58,0.3);
  background: rgba(255,255,255,0.06);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* DEMO */
.demo {
  padding: 96px 48px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.demo-label {
  text-align: left;
}
.demo-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.demo-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--fg-muted);
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232,168,58,0.15);
  border: 1px solid rgba(232,168,58,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PHONE MOCKUP */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-screen {
  width: 280px;
  background: #0a1a12;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 24px 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-header {
  text-align: center;
  margin-bottom: 20px;
}
.phone-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.phone-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phone-review {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.phone-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.phone-review p {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}
.phone-review span {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.7;
}
.phone-response {
  background: rgba(232,168,58,0.08);
  border: 1px solid rgba(232,168,58,0.2);
  border-radius: 12px;
  padding: 14px;
}
.phone-response-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.phone-response p {
  font-size: 12px;
  color: var(--fg);
  line-height: 1.5;
}
.phone-approve {
  text-align: center;
  font-size: 12px;
  color: #81c784;
  font-weight: 600;
  padding: 8px;
  background: rgba(76,175,80,0.1);
  border-radius: 8px;
}

/* PRICING */
.pricing {
  padding: 96px 48px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pricing-label {
  text-align: center;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.pricing-card {
  display: flex;
  justify-content: center;
}
.pricing-tier {
  background: var(--surface);
  border: 1px solid rgba(232,168,58,0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
}
.tier-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 18px;
  color: var(--fg-muted);
}
.tier-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.tier-features li {
  font-size: 14px;
  color: var(--fg);
}
.tier-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-sep {
  color: var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .demo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .problem-stats {
    flex-direction: column;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero, .problem, .features, .demo, .pricing, .closing {
    padding: 60px 24px;
  }
  .nav {
    padding: 20px 24px;
  }
  .footer {
    padding: 32px 24px;
  }
  .pricing-tier {
    padding: 28px 24px;
  }
  .price-amount {
    font-size: 44px;
  }
}