/* --- Career Development Premium Styles --- */

/* Hero Background System */
.dev-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dev-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.4) brightness(0.4);
}

.dev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(2, 6, 23, 0.4) 0%, 
    rgba(2, 6, 23, 0.8) 70%, 
    rgba(2, 6, 23, 1) 100%
  );
}

/* Blueprint Section Grid Texture */
.dev-grid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black, transparent 80%);
  opacity: 0.5;
}

/* Premium Card Refinements */
.dev-blueprint-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.dev-blueprint-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 40px 80px -20px rgba(0, 0, 0, 0.8), 
    0 0 20px rgba(99, 102, 241, 0.1);
}

.dev-blueprint-card i {
  transition: transform 0.4s ease;
}

.dev-blueprint-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.shadow-glow {
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Category Accent Borders */
.border-l-4.border-indigo-500 { border-left-color: #6366f1; }
.border-l-4.border-emerald-500 { border-left-color: #10b981; }
.border-l-4.border-orange-500 { border-left-color: #f97316; }

/* Typography Polish */
.dev-blueprint-card h3 {
  letter-spacing: -0.02em;
}

.dev-blueprint-card p {
  line-height: 1.6;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .combat-heading { line-height: 0.9; }
}

@media (max-width: 768px) {
  .dev-blueprint-card { 
    padding: 2rem !important; 
    border-radius: 2rem !important; 
  }
}

/* Custom Scroll Bar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}