/* ===== BASE ===== */
:root {
  --bg: #0f1f16;
  --card: #162118;
  --card-border: #1e3023;
  --lime: #a8e063;
  --lime-dim: rgba(168, 224, 99, 0.12);
  --white: #f5f2eb;
  --muted: #8a9b8a;
  --red: #ff6b6b;
  --yellow: #ffd93d;
  --green: #6bcb77;
}

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

html { scroll-behavior: smooth; }

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 224, 99, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 224, 99, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(168, 224, 99, 0.2);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline .lime { color: var(--lime); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(168, 224, 99, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== STORE MOCKUP ===== */
.hero-visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(168, 224, 99, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.store-mockup {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,224,99,0.05);
  position: relative;
}

.mockup-topbar {
  background: #0d1a10;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--card-border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-url {
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mockup-body {
  display: flex;
  height: 380px;
}

.mockup-sidebar {
  width: 120px;
  background: #0d1a10;
  padding: 16px 0;
  border-right: 1px solid var(--card-border);
  flex-shrink: 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
}

.sidebar-item.active {
  color: var(--lime);
  background: rgba(168,224,99,0.08);
  border-left: 2px solid var(--lime);
}

.sidebar-icon {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.5;
}

.sidebar-item.active .sidebar-icon { opacity: 1; }

.mockup-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.metric-card {
  background: rgba(168,224,99,0.05);
  border: 1px solid rgba(168,224,99,0.1);
  border-radius: 8px;
  padding: 10px 12px;
}

.metric-label {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.metric-value.lime { color: var(--lime); }

.metric-change {
  font-size: 9px;
  color: var(--muted);
}

.metric-change.up { color: var(--green); }

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.product-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px;
}

.tile-image {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.p1 { background: linear-gradient(135deg, #2d5a3d, #4a8c5c); }
.p2 { background: linear-gradient(135deg, #3d2d5a, #6c4a8c); }
.p3 { background: linear-gradient(135deg, #5a3d2d, #8c6b4a); }

.tile-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.tile-meta {
  font-size: 10px;
  color: var(--muted);
}

.tile-meta .lime { color: var(--lime); }

.ad-panel {
  background: rgba(168,224,99,0.06);
  border: 1px solid rgba(168,224,99,0.15);
  border-radius: 8px;
  padding: 10px 12px;
}

.ad-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.ad-stats {
  display: flex;
  gap: 16px;
  font-size: 10px;
  color: var(--muted);
}

.ad-stats .lime { color: var(--lime); font-weight: 600; }

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
  background: #0a1a0f;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

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

.manifesto-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.manifesto-head {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 64px;
}

.failure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.failure-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.failure-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--lime-dim);
  margin-bottom: 16px;
  line-height: 1;
}

.failure-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.failure-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.solution-strip {
  background: var(--lime-dim);
  border: 1px solid rgba(168,224,99,0.15);
  border-radius: 12px;
  padding: 28px 36px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
}

.solution-strip strong { color: var(--lime); }

/* ===== PLAYBOOK ===== */
.playbook { padding: 100px 48px; }
.playbook-inner { max-width: 1200px; margin: 0 auto; }

.playbook-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.playbook-head {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step {
  flex: 1;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  position: relative;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lime);
  margin-bottom: 16px;
}

.step-icon { margin-bottom: 20px; }

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ===== PROOF ===== */
.proof {
  padding: 80px 48px;
  background: #0a1a0f;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

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

.proof-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 0 60px;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--card-border);
  flex-shrink: 0;
}

.proof-source {
  text-align: center;
  font-size: 12px;
  color: rgba(138, 155, 138, 0.5);
  margin-top: 40px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 1px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.closing-head {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}

.closing-head .lime { color: var(--lime); }

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

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

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

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
}

.footer-copy {
  font-size: 13px;
  color: rgba(138,155,138,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }

  .failure-grid { grid-template-columns: 1fr; gap: 16px; }

  .steps { flex-direction: column; }
  .step-connector { display: none; }

  .stats-row { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }

  .manifesto, .playbook, .proof { padding: 80px 24px; }
  .closing { padding: 80px 24px; }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .metric-row { grid-template-columns: 1fr; }
  .mockup-body { display: none; }
}