/* Hero */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(67, 121, 238, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text-area {
  flex: 1;
}

.pill-badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--text-soft);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid #e1e7ec;
}

.pill-badge span {
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 32px;
}

.mockup-card {
  position: absolute;
  width: 380px;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 2;
}

.small-card {
  width: 280px;
  padding: 24px;
  top: 70%;
  right: -20px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(-50%); }
  50% { transform: translateY(-60%); }
  100% { transform: translateY(-50%); }
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.text-success {
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.mockup-chart {
  height: 120px;
  margin-bottom: 24px;
  border-bottom: 1px dashed #e1e7ec;
}

.sparkline {
  width: 100%;
  height: 100%;
}

.mockup-footer {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 12px;
}

.pulse {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulsing 2s infinite;
}

@keyframes pulsing {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.mockup-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 8px;
}

.mockup-desc {
  font-size: 13px;
  color: var(--text-soft);
}

