/* BotFlow — Forest Intelligence Theme */

:root {
  --bg: #080E0A;
  --surface: #0D1510;
  --surface-2: #131F18;
  --primary: #2ecc71;
  --primary-dim: #1e8449;
  --accent: #27ae60;
  --cream: #F7F3E9;
  --cream-dim: #c8c2b4;
  --text: #d4e8d6;
  --text-muted: #7A9E8A;
  --border: rgba(46,204,113,0.12);
  --border-dim: rgba(46,204,113,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-dim); border-radius: 3px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.mesh-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: float1 12s ease-in-out infinite alternate;
}

.mesh-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,174,96,0.08) 0%, transparent 70%);
  bottom: -50px; right: -50px;
  animation: float2 15s ease-in-out infinite alternate;
}

.mesh-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,204,113,0.06) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: float3 18s ease-in-out infinite alternate;
}

@keyframes float1 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,30px) scale(1.1); } }
@keyframes float2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-30px,-20px) scale(1.08); } }
@keyframes float3 { from { transform: translate(0,0); } to { transform: translate(20px,-30px); } }

.hero-orbs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 48px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  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-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-headline .line-2 {
  color: var(--primary);
  font-style: italic;
}

.hero-headline .line-3 {
  color: var(--cream-dim);
  font-weight: 400;
  font-size: 0.7em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.stat-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.stat-fill {
  height: 100%;
  width: 37%;
  background: linear-gradient(90deg, var(--primary-dim), var(--primary));
  border-radius: 2px;
  animation: grow 2s ease-out forwards;
}

@keyframes grow { from { width: 0; } }

.stat-caption {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* PROBLEM */
.problem { padding: 100px 0; background: var(--surface); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s;
}

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

.problem-icon {
  width: 48px; height: 48px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SOLUTION */
.solution { padding: 100px 0; }

.solution-header { text-align: center; margin-bottom: 80px; }
.solution-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); color: var(--cream); margin-bottom: 20px; }
.solution-intro { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

.solution-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

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

.flow-connector {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
}

.flow-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-dim), var(--primary));
  position: absolute;
  top: 50%;
}

.flow-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.flow-step h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--cream); margin-bottom: 8px; }
.flow-step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* FEATURES */
.features { padding: 100px 0; background: var(--surface); }
.features h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); color: var(--cream); margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px; height: 44px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.feature-card h3 { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* HOW */
.how { padding: 100px 0; }
.how h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); color: var(--cream); margin-bottom: 56px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.how-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.how-step h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); margin-bottom: 10px; }
.how-step p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.how-pricing {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  overflow: hidden;
}

.pricing-block { flex: 1; text-align: center; }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.pricing-label { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-note { font-size: 13px; color: var(--text-muted); max-width: 220px; margin: 0 auto; line-height: 1.5; }
.pricing-divider { width: 1px; align-self: stretch; background: var(--border); margin: 0 48px; }

/* INDUSTRIES */
.industries { padding: 100px 0; background: var(--surface); }
.industries h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); color: var(--cream); margin-bottom: 56px; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s;
}

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

.industry-icon {
  width: 48px; height: 48px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.industry-card h3 { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.industry-cta {
  border-color: var(--border);
  background: linear-gradient(135deg, var(--surface-2), rgba(46,204,113,0.04));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-cta h3 { color: var(--primary); }
.industry-cta p { color: var(--text); }

/* CLOSING */
.closing { padding: 100px 0; }

.closing-content { text-align: center; margin-bottom: 64px; }
.closing-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 52px); color: var(--cream); margin-bottom: 20px; line-height: 1.2; }
.closing-content p { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }

.closing-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-block-large {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}

.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-big-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.stat-big-sub {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.5;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-block { display: none; }
  .problem-grid, .features-grid, .industries-grid, .how-steps, .closing-visual { grid-template-columns: 1fr 1fr; }
  .solution-flow { flex-direction: column; }
  .flow-connector { display: none; }
  .how-pricing { flex-direction: column; gap: 32px; }
  .pricing-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 640px) {
  .section-inner { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .problem-grid, .features-grid, .industries-grid, .how-steps, .closing-visual { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; }
  .features h2, .how h2, .industries h2 { margin-bottom: 36px; }
}