/* ============================================
   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;
  background: linear-gradient(135deg, rgba(11, 16, 38, 0.9), rgba(11, 16, 38, 0.7)), url('../assets/images/technology-hero.jpg') center / cover no-repeat fixed;
  overflow: hidden;
}

.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 {
    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;
  }
}

/* === VISION === */
.tech-vision__text {
  font-size: 1.15rem;
  color: var(--text-heading);
  line-height: 1.8;
}

/* === CTA === */
.tech-cta {
  background: var(--bg-elevated);
  padding: 4rem 1rem;
}

.tech-cta__title {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--text-heading);
}

.tech-cta__text {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
