.dashboard-page {
  display: grid;
  gap: 22px;
}

.hero-panel,
.card,
.chart-card,
.input-card,
.table-card,
.landscape-card,
.spotlight-card {
  border: 1px solid rgba(72, 127, 201, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(23, 67, 128, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.96)),
    linear-gradient(120deg, rgba(120, 182, 255, 0.16), rgba(145, 211, 255, 0.16));
}

.page-header-panel {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 16px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.eyebrow,
.section-eyebrow,
.card-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f7da0;
}

.page-title,
.section-header h2 {
  margin: 0;
}

.page-title {
  margin-top: 6px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  color: #184da9;
}

.page-subtitle,
.panel-description,
.input-hint,
.table-note,
.spotlight-summary,
.landscape-copy {
  color: #5f7da0;
  line-height: 1.7;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.section-header h2 {
  margin-top: 4px;
  font-size: 28px;
  font-weight: 800;
  color: #184da9;
}

.filter-bar {
  display: grid;
  gap: 10px;
  align-items: stretch;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 12px;
  padding-top: 4px;
}

.filter-label {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #5f7da0;
}

.toggle-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(72, 127, 201, 0.16);
  background: rgba(235, 243, 255, 0.88);
}

.toggle-btn {
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b86a8;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.toggle-btn.active {
  color: #184da9;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(45, 108, 223, 0.18);
}

.date-range-display {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(72, 127, 201, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(237, 245, 255, 0.92));
  color: #10325d;
  font: inherit;
}

.date-range-segment,
.date-range-divider,
.date-range-days {
  white-space: nowrap;
}

.date-range-days {
  color: #6f8eb1;
  font-size: 11px;
}

@media (max-width: 900px) {
  .section-header,
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-toolbar {
    grid-template-columns: 1fr;
  }
}
