/* ============================================
   QUANTUM PARADOX — Technology Page CSS
   ============================================ */

/* === HERO === */
.tech-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  position: relative;
}

.tech-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.tech-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 16, 38, 0.9), rgba(11, 16, 38, 0.7));
  z-index: -1;
}

.tech-hero__content {
  position: relative;
  z-index: 1;
}

.tech-hero__badge {
  margin-bottom: var(--space-md);
}

.tech-hero__title {
  margin-bottom: var(--space-sm);
}

.tech-hero__subtitle {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0;
}

/* === RESEARCH === */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.research-grid .card {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
}

/* === PHILOSOPHY === */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.philosophy-quote {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 2rem;
  line-height: 1.4;
  color: var(--text-heading);
  margin: 0;
  padding-left: var(--space-xl);
  border-left: 4px solid var(--accent-blue);
  box-shadow: -10px 0 20px -10px var(--accent-blue-glow);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .tech-hero__bg {
    background-attachment: scroll; /* Fix for mobile fixed background issues */
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .philosophy-quote {
    font-size: 1.6rem;
  }
}
