/* Gate 4 — Signature interaction layer (3D tilt cards + magnetic links + text reveal) */

.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word-reveal-inner {
  display: inline-block;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .word-reveal-inner {
    transform: none !important;
  }
}

.tilt-card {
  will-change: transform;
  box-shadow: 0 0 0 rgba(39, 33, 29, 0);
  transition: box-shadow 0.45s var(--ease-out);
}

.tilt-card.is-tilting {
  box-shadow: 0 34px 60px -24px rgba(39, 33, 29, 0.4);
}

@media (hover: hover) and (pointer: fine) {
  .threshold__enter,
  .room-philosophy__inquire,
  .room-invitation__cta,
  .room-founder__about,
  .chapter__link,
  .room-edit__more a {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tilt-card {
    transition: none;
  }
}
