:root {
  --bg: #0a0f1a;
  --bg-2: #0f1629;
  --surface: #141e33;
  --surface-2: #1a2840;
  --accent: #10e5a0;
  --accent-dim: #10e5a020;
  --accent-2: #818cf8;
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --border: #1e2d45;
  --good: #10e5a0;
  --bad: #f87171;
  --radius: 12px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 26, 0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--text-3);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* HERO */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.hero-glow-1 {
  width: 600px; height: 400px;
  background: radial-gradient(circle, #10e5a0 0%, transparent 70%);
  top: -100px; left: -100px;
  opacity: 0.15;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  bottom: -50px; right: -50px;
  opacity: 0.1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.headline-accent {
  background: linear-gradient(135deg, var(--accent), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-revenue {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}
.revenue-stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--text); display: block; }
.stat-label { font-size: 12px; color: var(--text-3); display: block; }
.revenue-x, .revenue-eq { font-size: 20px; color: var(--text-3); }
.stat-result { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--accent); display: block; }

/* Automation Widget */
.automation-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(16, 229, 160, 0.08);
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.widget-title { font-size: 13px; font-weight: 600; color: var(--text-2); font-family: var(--font-head); }
.widget-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); }
.status-pulse {
  width: 8px; height: 8px; 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); }
}
.widget-event {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.widget-event:last-of-type { border-bottom: none; }
.event-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-booking { background: #10e5a020; color: var(--accent); }
.event-lead { background: #818cf820; color: var(--accent-2); }
.event-follow { background: #fbbf2420; color: #fbbf24; }
.event-social { background: #ec489920; color: #ec4899; }
.event-content { flex: 1; }
.event-title { font-size: 13px; color: var(--text); font-weight: 500; margin-bottom: 2px; }
.event-time { font-size: 11px; color: var(--text-3); }
.widget-footer {
  padding: 14px 20px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.widget-count { font-size: 12px; color: var(--text-3); }
.widget-count span { color: var(--accent); font-weight: 600; }

/* PROOF */
.proof { padding: 80px 0; border-top: 1px solid var(--border); }
.proof-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 32px; font-family: var(--font-head); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.proof-stat { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.proof-num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent); letter-spacing: -1px; margin-bottom: 8px; }
.proof-unit { font-size: 20px; }
.proof-desc { font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* SECTION LABELS */
.section-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 16px; font-family: var(--font-head); }
.section-headline { font-family: var(--font-head); font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 56px; max-width: 600px; }

/* SERVICES */
.services { padding: 100px 0; background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-title { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.service-desc { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.service-tag { font-size: 12px; color: var(--accent); background: var(--accent-dim); display: inline-block; padding: 4px 10px; border-radius: 100px; }

/* PRICING */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pricing-card { padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.pricing-popular { border-color: var(--accent); box-shadow: 0 0 40px rgba(16, 229, 160, 0.1); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 100px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }
.pricing-tier { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--text); letter-spacing: -2px; }
.price-per { font-size: 18px; color: var(--text-3); }
.pricing-setup { font-size: 13px; color: var(--text-3); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); padding: 8px 0; border-bottom: 1px solid var(--border); }
.pricing-feat:last-child { border-bottom: none; }
.pricing-feat.included svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-feat.excluded { color: var(--text-3); text-decoration: line-through; }
.pricing-feat.excluded svg { color: var(--text-3); flex-shrink: 0; margin-top: 2px; }
.pricing-for { font-size: 12px; color: var(--text-3); font-style: italic; line-height: 1.5; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-3); }

/* HOW IT WORKS */
.how { padding: 100px 0; background: var(--bg-2); }
.steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 60px; }
.step { flex: 1; padding: 0 24px; }
.step:first-child { padding-left: 0; }
.step-num { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: var(--surface-2); line-height: 1; margin-bottom: 20px; letter-spacing: -2px; }
.step-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.step-connector { width: 80px; flex-shrink: 0; height: 1px; background: linear-gradient(90deg, var(--border), var(--accent), var(--border)); margin-top: 28px; }
.how-cta { text-align: center; padding: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.cta-text { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cta-sub { font-size: 15px; color: var(--text-2); }

/* OUTCOMES */
.outcomes { padding: 100px 0; }
.outcomes-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.outcomes-headline { font-family: var(--font-head); font-size: clamp(28px, 3vw, 42px); font-weight: 700; letter-spacing: -1px; line-height: 1.2; margin-bottom: 32px; }
.outcomes-list { display: flex; flex-direction: column; gap: 16px; }
.outcome-item { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--text-2); }
.outcome-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.outcome-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.outcome-widget-label { padding: 16px 20px; background: var(--surface-2); font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-head); border-bottom: 1px solid var(--border); }
.outcome-comparison { display: grid; grid-template-columns: 1fr auto 1fr; }
.comparison-col { padding: 20px; }
.comp-header { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 16px; font-family: var(--font-head); }
.comparison-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.comp-row:last-child { border-bottom: none; }
.comp-label { font-size: 13px; color: var(--text-3); }
.comp-val { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.comp-good { color: var(--accent); }
.comp-bad { color: var(--bad); }
.comparison-divider { display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--text-3); padding: 0 8px; }

/* CLOSING */
.closing { padding: 100px 0 120px; }
.closing-inner { text-align: center; position: relative; }
.closing-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(16,229,160,0.12) 0%, transparent 70%); pointer-events: none; }
.closing-headline { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 20px; position: relative; }
.closing-sub { font-size: 18px; color: var(--text-2); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; position: relative; }
.closing-revenue { display: inline-flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--border); padding: 16px 28px; border-radius: 100px; margin-bottom: 20px; position: relative; }
.closing-stat { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text); }
.closing-x, .closing-eq { font-size: 18px; color: var(--text-3); }
.closing-result { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--accent); }
.closing-note { font-size: 14px; color: var(--text-3); font-style: italic; position: relative; }

/* FOOTER */
.footer { padding: 40px 0 32px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text); }
.footer-tag { font-size: 12px; color: var(--text-3); }
.footer-links span { font-size: 12px; color: var(--text-3); }
.footer-bottom { font-size: 12px; color: var(--text-3); border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 1px; height: 40px; margin: 0 auto; background: linear-gradient(180deg, var(--border), var(--accent), var(--border)); }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-right { display: none; }
  .closing-revenue { flex-wrap: wrap; justify-content: center; }
}