.dashboard-overview {
  width: min(1400px, 100%);
  max-width: none;
  gap: 24px;
  padding-top: 0;
}

.overview-hero {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line-soft);
}

.overview-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.overview-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
}

.overview-subtitle {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(244, 247, 251, 0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}

.overview-section {
  width: 100%;
}

.overview-section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.overview-section-header h2 {
  margin: 0;
  color: var(--text-main);
  font-size: 1.08rem;
  font-weight: 750;
}

.overview-tabs,
.overview-status-filters {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.overview-tabs {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.overview-tabs::-webkit-scrollbar,
.overview-status-filters::-webkit-scrollbar {
  display: none;
}

.overview-tabs button,
.overview-status-filters button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 5px 2px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 247, 251, 0.62);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
}

.overview-tabs button:hover,
.overview-status-filters button:hover {
  color: var(--text-main);
}

.overview-tabs button.active,
.overview-status-filters button.active {
  border-color: var(--gold);
  color: var(--text-main);
  font-weight: 750;
}

.overview-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.overview-search {
  display: grid;
  width: min(360px, 100%);
  gap: 5px;
  color: rgba(244, 247, 251, 0.64);
  font-size: 0.7rem;
  font-weight: 600;
}

.overview-search input {
  width: 100%;
  min-height: 38px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: var(--text-main);
  background: transparent;
  font: inherit;
}

.overview-search input::placeholder {
  color: rgba(244, 247, 251, 0.46);
}

.overview-search input:focus-visible {
  border-color: var(--gold);
}

.quick-start-grid {
  display: grid;
  width: 100%;
  margin-top: 0;
  gap: 12px;
}

.overview-plugin-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.quick-start-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 9px 10px;
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 12px;
  text-align: left;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.028);
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.quick-start-icon {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: rgba(244, 247, 251, 0.78);
}

.quick-start-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-start-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-size: 0.94rem;
  font-weight: 750;
}

.quick-start-state {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(244, 247, 251, 0.60);
  font-size: 0.66rem;
  font-weight: 650;
  white-space: nowrap;
}

.quick-start-state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9097a3;
}

.quick-start-card[data-plugin-state="enabled"] .quick-start-state {
  color: #9ff0c3;
}

.quick-start-card[data-plugin-state="enabled"] .quick-start-state::before {
  background: #35d07f;
}

.quick-start-card[data-plugin-state="setup"] .quick-start-state {
  color: #f6d487;
}

.quick-start-card[data-plugin-state="setup"] .quick-start-state::before {
  background: var(--gold);
}

.quick-start-desc {
  grid-column: 1 / 4;
  grid-row: 2;
  color: rgba(244, 247, 251, 0.66);
  font-size: 0.78rem;
  font-weight: 450;
  line-height: 1.45;
}

.quick-start-status {
  grid-column: 1 / 4;
  grid-row: 3;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  color: #f6d487;
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.quick-start-card:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 179, 53, 0.30);
  background: rgba(245, 179, 53, 0.055);
}

.quick-start-card:hover .quick-start-status,
.quick-start-card:focus-visible .quick-start-status {
  transform: translateX(3px);
  border-color: var(--gold);
  color: #ffe3a3;
}

.quick-start-card:focus-visible {
  border-color: var(--gold);
}

.overview-no-results {
  margin: 20px 0;
  color: rgba(244, 247, 251, 0.68);
}

@media (max-width: 1300px) {
  .overview-plugin-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 1200px) {
  .overview-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .overview-search {
    width: 100%;
  }
}
