/* =========================================================
   PERSONA SYSTEM — GLOBAL (ALL PERSONAS)
========================================================= */

/* ---------- Links ---------- */
.persona-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ---------- Generic Persona Shell ---------- */
.persona {
  position: relative;
  min-height: 70vh;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.persona::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  animation: personaGlow 14s ease-in-out infinite;
}

.persona > * {
  position: relative;
  z-index: 1;
}

@keyframes personaGlow {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}

/* ---------- Persona CTA Cards ---------- */
.persona-cta-card {
  position: relative;
  padding: 1.4rem 2.4rem;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.persona-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.persona-cta {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ---------- Action Cards ---------- */
.persona-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 720px;
}

@media (max-width: 720px) {
  .persona-actions {
    grid-template-columns: 1fr;
  }
}

/* ---------- Back Navigation ---------- */
.persona-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.75;
}

/* =========================================================
   SCENE SYSTEM — GLOBAL STACKING CONTEXT
========================================================= */

.scene {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
}

.scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.scene-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
}
