/* Homepage-only — dashboard mock */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 5rem;
  align-items: center;
}

.hero-dashboard {
  background: rgba(4, 18, 37, 0.8);
  border: 1px solid rgba(26, 127, 232, 0.2);
  border-radius: var(--r20);
  overflow: hidden;
  backdrop-filter: blur(8px);
  animation: heroFadeIn 1s 0.5s ease forwards;
  opacity: 0;
}
.hd-topbar {
  background: rgba(7, 32, 64, 0.9);
  border-bottom: 1px solid rgba(26, 127, 232, 0.15);
  padding: 1rem 1.5rem;
}
.hd-dot { width: 10px; height: 10px; border-radius: 50%; }
.hd-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink4);
  letter-spacing: 0.5px;
}
.hd-live {
  gap: 5px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent2);
}
.hd-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  animation: breathe 1.5s infinite;
}
.hd-body { padding: 1.5rem; }
.hd-metric {
  background: rgba(7, 32, 64, 0.6);
  border: 1px solid rgba(26, 127, 232, 0.15);
  border-radius: var(--r12);
  padding: 1rem 1.1rem;
}
.hd-m-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--ink4);
  margin-bottom: 6px;
}
.hd-m-num {
  font-family: var(--syne);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
}
.hd-m-delta { font-size: 11px; font-weight: 600; margin-top: 3px; }
.up { color: var(--accent2); }
.flat { color: var(--blue-300); }
.hd-chart-card {
  background: rgba(7, 32, 64, 0.6);
  border: 1px solid rgba(26, 127, 232, 0.15);
  border-radius: var(--r12);
  padding: 1rem 1.1rem;
  margin-bottom: 14px;
}
.hd-chart-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--ink4);
}
.hd-chart-val {
  font-family: var(--syne);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.bars-wrap { gap: 4px; height: 56px; }
.hb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hd-log {
  background: rgba(2, 11, 24, 0.8);
  border: 1px solid rgba(26, 127, 232, 0.12);
  border-radius: var(--r12);
  padding: 0.9rem 1.1rem;
}
.hd-log-line {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
}
.log-t { color: var(--ink4); }
.log-ok { color: var(--accent2); }
.log-info { color: var(--blue-300); }
.log-warn { color: var(--warning); }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: heroFadeIn 0.8s ease forwards;
  opacity: 0;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-left > *:nth-child(5) { animation-delay: 0.7s; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-dashboard { display: none; }
}
