/**
 * Performance Dashboard landing page
 */
.performance-dashboard-page .pd-hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.performance-dashboard-page .pd-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(270deg, #07E0FD 0%, #247CC6 51.92%, #54308C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.performance-dashboard-page .pd-hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.performance-dashboard-page .pd-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.performance-dashboard-page .btn-pd-primary,
.performance-dashboard-page .btn-pd-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.performance-dashboard-page .btn-pd-primary {
  background: linear-gradient(90deg, #25C1F1 0%, #1a9fd4 100%);
  color: #050A16;
}

.performance-dashboard-page .btn-pd-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color: #050A16;
}

.performance-dashboard-page .btn-pd-secondary {
  background: transparent;
  color: #247CC6;
  border: 2px solid #247CC6;
}

.performance-dashboard-page .btn-pd-secondary:hover {
  color: #07E0FD;
  border-color: #07E0FD;
  transform: translateY(-2px);
}

.performance-dashboard-page .pd-content {
  padding: 60px 0 100px;
}

.performance-dashboard-page .pd-section-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.performance-dashboard-page .pd-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.performance-dashboard-page .pd-feature {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
}

.performance-dashboard-page .pd-feature h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.performance-dashboard-page .pd-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .performance-dashboard-page .pd-hero {
    padding: 100px 0 60px;
  }
  .performance-dashboard-page .pd-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .performance-dashboard-page .pd-content {
    padding: 48px 0 80px;
  }
}

@media (max-width: 480px) {
  .performance-dashboard-page .pd-hero-cta {
    flex-direction: column;
  }
  .performance-dashboard-page .btn-pd-primary,
  .performance-dashboard-page .btn-pd-secondary {
    width: 100%;
  }
}
