.hero {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 22px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  color: var(--blue-3);
  text-shadow: 0 0 20px rgba(88, 166, 255, 0.12);
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-slider {
  position: relative;
  min-height: 225px;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dots button.active {
  width: 28px;
  background: linear-gradient(90deg, var(--blue-2), var(--green));
}

.hero-visual {
  padding: 24px;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.dashboard-label {
  margin: 0 0 8px;
  color: var(--muted-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-top h3 {
  margin: 0;
  font-size: 1.4rem;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(49, 214, 123, 0.08);
  color: #6cf3a2;
  border: 1px solid rgba(49, 214, 123, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
}

.dashboard-chart {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
}

.chart-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  filter: drop-shadow(0 0 10px currentColor);
}

.chart-line-1 {
  top: 58%;
  height: 110px;
  border-radius: 0;
  background: none;
  border-bottom: 3px solid var(--blue-2);
  clip-path: polygon(0 78%, 10% 70%, 18% 74%, 29% 50%, 42% 58%, 54% 42%, 66% 48%, 78% 32%, 90% 40%, 100% 12%, 100% 100%, 0 100%);
  color: var(--blue-2);
  background: linear-gradient(180deg, rgba(88, 166, 255, 0.22), rgba(88, 166, 255, 0.02));
}

.chart-line-2 {
  top: 35%;
  height: 140px;
  border-bottom: 3px solid var(--green);
  clip-path: polygon(0 66%, 12% 72%, 24% 60%, 36% 64%, 48% 46%, 60% 50%, 72% 30%, 84% 34%, 100% 10%, 100% 100%, 0 100%);
  color: var(--green);
  background: linear-gradient(180deg, rgba(49, 214, 123, 0.16), rgba(49, 214, 123, 0.01));
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.mini-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.mini-stat strong {
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 52px;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2rem;
  }
}