/* Philosophy Cinematic — canonical spec from component library
   Static radial glow only — NO animation (rotateGlow is banned) */

.philosophy-cinematic {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
}

.philosophy-cinematic::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  opacity: 0.3;
  /* NO ANIMATION — static radial only */
}

.philosophy-text-cinematic {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  text-align: center;
  max-width: 1400px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.philosophy-text-cinematic .electric-blue {
  color: var(--electric-blue);
  text-shadow: 0 0 40px var(--electric-blue);
}

.philosophy-text-cinematic .gold {
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold);
}

.philosophy-text-cinematic .electric-purple {
  color: var(--electric-purple);
  text-shadow: 0 0 40px var(--electric-purple);
}

.philosophy-text-cinematic .red {
  color: var(--brand-red);
  text-shadow: 0 0 40px var(--brand-red);
}
