:root {
  --bg: #0a0a0e;
  --bg-2: #111118;
  --bg-card: #16161e;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #a8ff57;
  --accent-dim: #7ab840;
  --blue: #4fa3ff;
  --purple: #c87fff;
  --border: #22222e;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,255,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(168,255,87,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: var(--font-display);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}

/* HERO WIDGET */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #0d0d14;
  border-bottom: 1px solid var(--border);
}
.widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.widget-dot.red { background: #ff5f57; }
.widget-dot.yellow { background: #ffbd2e; }
.widget-dot.green { background: #28c840; }
.widget-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
  font-family: var(--font-body);
}
.widget-chat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.chat-msg.user {
  background: #1e1e28;
  color: var(--fg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.bot {
  background: #0f1e0f;
  color: var(--accent);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(168,255,87,0.15);
}
.chat-msg.bot.confirmed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-confirmed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(168,255,87,0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.widget-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #0a0a0e;
  border-top: 1px solid var(--border);
}
.status-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(168,255,87,0.12);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-display);
}
.status-time {
  font-size: 12px;
  color: var(--fg-muted);
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-header {
  margin-bottom: 60px;
}
.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  max-width: 600px;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.pstat {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.pstat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.pstat-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
  opacity: 0.9;
}

/* SOLUTIONS */
.solutions {
  padding: 100px 48px;
  background: var(--bg);
}
.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.solutions-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 60px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.2s;
}
.solution-card:hover {
  border-color: rgba(168,255,87,0.2);
}
.sol-icon {
  margin-bottom: 20px;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.solution-card > p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sol-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sol-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.sol-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

/* PACKAGES */
.packages {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(168,255,87,0.3);
  background: linear-gradient(180deg, rgba(168,255,87,0.04) 0%, var(--bg-card) 100%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
}
.price-sub {
  font-size: 14px;
  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;
  color: var(--accent);
  font-size: 12px;
}
.pricing-recurring {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.recurring-mo {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.target-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-right: 4px;
}
.target-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.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-weight: 800;
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 300px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .problem-stats,
  .solutions-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 24px 80px;
  }
  .nav {
    padding: 20px 24px;
  }
  .problem, .solutions, .packages, .closing {
    padding: 80px 24px;
  }
  .footer {
    padding: 40px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .pstat-num {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 30px;
  }
  .stat-val {
    font-size: 20px;
  }
}