/* PGI Glass Design System - shared across all PGI sites */
/* Copied from pgicover.com main marketing site */

/* Fixed background layer */
.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(18, 29, 43, 1), rgba(18, 29, 43, 0)), url('https://pgicover.com/images/splash-wide-5.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

/* Content isolation layer */
.page-content {
  position: relative;
  isolation: isolate;
}

/* Glass panel - primary content container */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  border-right: none;
  border-radius: 16px;
}

/* Glass panel - increased blur for content readability */
.glass-heavy {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-left: none;
  border-right: none;
  border-radius: 16px;
}

/* Glass card - for grid items */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: none;
  border-right: none;
  border-radius: 12px;
  transition: all 0.2s;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Eyebrow badge */
.glass-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
