/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #06081A;
  --bg-mid: #0C1033;
  --bg-light: #F7F8FC;
  --fg: #FFFFFF;
  --fg-muted: #9BA3BF;
  --fg-dark: #1A1D35;
  --fg-dark-muted: #5A5F7D;
  --accent: #F5B731;
  --accent-glow: rgba(245, 183, 49, 0.15);
  --teal: #2DD4BF;
  --teal-glow: rgba(45, 212, 191, 0.12);
  --whatsapp: #25D366;
  --instagram: #E4405F;
  --facebook: #1877F2;
  --webchat: #8B5CF6;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 120px 24px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, var(--bg-dark) 0%, var(--bg-mid) 60%, #111640 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(245, 183, 49, 0.25);
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 160px;
  margin-top: 8px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ============ PROBLEM ============ */
.problem {
  padding: 100px 24px;
  background: var(--bg-light);
  color: var(--fg-dark);
}
.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.problem-desc {
  font-size: 1.1rem;
  color: var(--fg-dark-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  background: #FFFFFF;
  border: 1px solid #E8EAF0;
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg-dark);
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--fg-dark-muted);
  line-height: 1.65;
}

/* ============ CHANNELS ============ */
.channels {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #EEF0F8 100%);
  color: var(--fg-dark);
}
.channels-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.channels h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.channel-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.channel-sources {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: #FFFFFF;
  border: 1px solid #E8EAF0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg-dark);
  min-width: 180px;
}
.channel-item.whatsapp svg { color: var(--whatsapp); }
.channel-item.instagram svg { color: var(--instagram); }
.channel-item.facebook svg { color: var(--facebook); }
.channel-item.webchat svg { color: var(--webchat); }
.channel-arrow {
  position: relative;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}
.arrow-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.hive-hex {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.2);
}
.hive-logo {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.hive-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.channel-outcomes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome {
  padding: 12px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(45, 212, 191, 0.02) 100%);
  border: 1px solid rgba(45, 212, 191, 0.2);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fg-dark);
  text-align: left;
}

/* ============ FEATURES ============ */
.features {
  padding: 100px 24px;
  background: var(--bg-dark);
  color: var(--fg);
}
.features-inner {
  max-width: 800px;
  margin: 0 auto;
}
.features .section-tag {
  color: var(--teal);
  background: var(--teal-glow);
}
.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.feature-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}
.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============ CLOSING ============ */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.closing-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.market-tag {
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 48px 24px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-hex {
  font-size: 1.4rem;
  color: var(--accent);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .stat-label { max-width: 240px; }
  .problem-grid { grid-template-columns: 1fr; }
  .channel-flow { flex-direction: column; gap: 24px; }
  .channel-arrow { transform: rotate(90deg); width: 40px; }
  .channel-sources { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .channel-item { min-width: auto; padding: 10px 16px; font-size: 0.85rem; }
  .channel-item svg { width: 22px; height: 22px; }
  .channel-outcomes { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .outcome { padding: 10px 16px; font-size: 0.85rem; }
  .feature-row { flex-direction: column; gap: 8px; }
  .feature-number { font-size: 2rem; min-width: auto; }
  .problem, .channels, .features, .closing { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .closing h2 { font-size: 1.8rem; }
}