/* ==========================
   Role Selection Page Styles
   ========================== */

.role-selection-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 30px 120px 30px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.role-selection-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
}

.role-selection-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.role-selection-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #a0a0b0;
  line-height: 1.6;
  font-weight: 400;
}

.role-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.role-card {
  background: linear-gradient(135deg, rgba(15, 23, 35, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  border: 2px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(56, 189, 248, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.role-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(56, 189, 248, 0.2);
}

.role-card:hover::before {
  opacity: 1;
}

.role-card-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.role-card:hover .role-card-icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(168, 85, 247, 0.2));
  border-color: rgba(56, 189, 248, 0.6);
  transform: scale(1.1);
}

.role-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.role-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #a0a0b0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.role-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-card-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #c0c0c0;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.role-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.role-card-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.role-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Responsive Design */
@media (max-width: 768px) {
  .role-selection-wrapper {
    padding: 40px 20px 80px 20px;
  }

  .role-selection-title {
    font-size: 2.5rem;
  }

  .role-selection-subtitle {
    font-size: 1rem;
  }

  .role-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .role-card {
    padding: 40px 30px;
  }

  .role-card-icon {
    width: 100px;
    height: 100px;
  }

  .role-card-title {
    font-size: 1.5rem;
  }
}