/* Session-Mode: kontainer-relativ statt viewport-relativ */
.session-app { position: relative; min-height: 100vh; width: 100%; isolation: isolate; overflow: hidden; }
.session-app .session-main { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .session-app {
    /* Tiefer als Tief-Spreads, kinemathisch.
       Tief-Spreads sind: #1f1018 / #261520 / #1a0e16 / ink #f5ece8 / magenta #E8669A.
       Session geht eine Stufe tiefer fuer Immersion. */
    --bg-1: #261520;   /* warm wie Tief-Spread paper-light */
    --bg-2: #1f1018;   /* Tief-Spread paper */
    --bg-3: #150a11;   /* eine Stufe tiefer */
    --bg-4: #0a0508;   /* deepest */
    --accent: #E8669A;        /* Journal-Magenta, lighter fuer dunklen Grund */
    --accent-core: #C11D6F;   /* THE GLOW, fuer Glow + Buttons */
    --accent-soft: rgba(232, 102, 154, 0.45);
    --accent-pale: rgba(232, 102, 154, 0.10);
    --gold: #D4A574;
    --cream: #f5ece8;        /* identisch Journal --ink */
    --cream-dim: rgba(245, 236, 232, 0.78);
    --cream-mute: rgba(245, 236, 232, 0.55);
    --cream-faint: rgba(245, 236, 232, 0.28);
    --cream-ghost: rgba(245, 236, 232, 0.12);
    --hairline: rgba(245, 236, 232, 0.12);
    --transition-room: 2400ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* === Subtile Mood-Akzente, kein dramatischer Palette-Wechsel ===
     Die Basis bleibt Aubergine (Journal-Sprache).
     Der Mood faerbt nur den Magenta-Akzent leicht um. */
  [data-mood="warm"]      { --accent: #E8A87C; --accent-soft: rgba(232, 168, 124, 0.42); }
  [data-mood="weit"]      { --accent: #9DD6D9; --accent-soft: rgba(157, 214, 217, 0.42); }
  [data-mood="still"]     { --accent: #A8B5DD; --accent-soft: rgba(168, 181, 221, 0.42); }
  [data-mood="leicht"]    { --accent: #E2C5D9; --accent-soft: rgba(226, 197, 217, 0.42); }
  [data-mood="ruhig"]     { --accent: #B5CDB8; --accent-soft: rgba(181, 205, 184, 0.42); }
  [data-mood="sicher"]    { --accent: #D4A574; --accent-soft: rgba(212, 165, 116, 0.42); }
  [data-mood="weich"]     { --accent: #E8A8C0; --accent-soft: rgba(232, 168, 192, 0.42); }
  [data-mood="klar"]      { --accent: #B8D0E5; --accent-soft: rgba(184, 208, 229, 0.42); }
  [data-mood="getragen"]  { --accent: #C49968; --accent-soft: rgba(196, 153, 104, 0.42); }
  [data-mood="lebendig"]  { --accent: #E8669A; --accent-soft: rgba(232, 102, 154, 0.42); }
  [data-mood="zart"]      { --accent: #C8B8E5; --accent-soft: rgba(200, 184, 229, 0.42); }

  .session-app * { box-sizing: border-box; margin: 0; padding: 0; }

  .session-app .session-main, .session-app {
    height: 100%;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .session-app {
    background: var(--bg-2);
    transition: background var(--transition-room);
    cursor: default;
  }

  /* === Atmosphere layer, warmer Aubergine wie WI-Kurs === */
  .session-app .atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 80% 60% at 30% 20%, var(--accent-soft) 0%, transparent 55%),
      radial-gradient(ellipse 70% 80% at 70% 80%, var(--bg-1) 0%, transparent 65%),
      linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
    transition: background var(--transition-room);
    animation: drift 40s ease-in-out infinite;
  }
  @keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(2%, -1%) scale(1.04); }
    66%      { transform: translate(-1%, 2%) scale(0.98); }
  }

  /* === Breathing center light === */
  .session-app .breath {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    transition: opacity var(--transition-room);
    animation: breathe 9s ease-in-out infinite;
  }
  @keyframes breathe {
    0%, 100% { transform: scale(0.85); opacity: 0.25; }
    33%      { transform: scale(1.05); opacity: 0.5; }
  }
  .session-app[data-state="cover"] .breath,
  .session-app[data-state="closing"] .breath { opacity: 0.7; }
  .session-app[data-state="activate"] .breath { opacity: 0.6; animation-duration: 9s; }

  /* === Main canvas === */
  .session-app .session-main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 32px 110px;
    text-align: center;
  }

  /* === Top bar === */
  .session-app .topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 32px 16px;
    pointer-events: none;
    gap: 14px;
  }
  .topbar > * { pointer-events: auto; }

  /* === Wunschwort = Leuchtturm, prominent center === */
  .leuchtturm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 1200ms ease, transform 1200ms ease, color var(--transition-room);
  }
  .session-app.has-word .leuchtturm {
    opacity: 1;
    transform: translateY(0);
  }
  .leuchtturm-label {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    font-weight: 500;
  }
  .wunschwort {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: 30px;
    letter-spacing: -0.02em;
    color: var(--accent);
    text-transform: lowercase;
    line-height: 1;
    text-shadow: 0 0 32px var(--accent-soft);
    padding: 4px 24px;
  }

  /* === Phase dots, sichtbarer === */
  .phase-dots {
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 600ms ease;
    align-items: center;
  }
  .session-app.in-session .phase-dots { opacity: 1; }
  .phase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-faint);
    transition: all 400ms ease;
    border: 1px solid transparent;
  }
  .phase-dot.active {
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-soft);
    transform: scale(1.5);
  }
  .phase-dot.done {
    background: var(--gold);
    opacity: 0.55;
  }

  /* === Cover screen === */
  .cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 540px;
  }
  .cover-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    font-weight: 500;
  }
  .cover h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--cream);
  }
  .cover h1 em {
    font-style: normal;
    color: var(--accent);
    font-weight: 300;
  }
  .cover p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--cream-dim);
    font-weight: 300;
    max-width: 420px;
  }

  /* === Prep screen === */
  .prep {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .prep-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: 32px;
    letter-spacing: -0.01em;
    color: var(--cream);
  }
  .prep-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .prep-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream-dim);
    font-weight: 300;
  }
  .prep-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 11px;
    border-radius: 50%;
    background: var(--accent);
  }

  /* === Step screen === */
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 600px;
  }
  .step-anker {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 1400ms ease, transform 1400ms ease;
    text-wrap: balance;
  }
  .step-anker.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* === Audio listener === */
  .listener {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .audio-orb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--cream-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 400ms ease;
  }
  .audio-orb:hover { border-color: var(--accent); transform: scale(1.05); }
  .audio-orb.is-inviting {
    width: 96px;
    height: 96px;
    border-color: var(--accent);
    box-shadow: 0 0 0 0 rgba(193, 29, 111, 0.4);
    animation: orbInvite 2.8s ease-in-out infinite;
  }
  .audio-orb.is-inviting.playing { animation: none; box-shadow: none; }
  .audio-orb.is-inviting .audio-orb-icon { fill: var(--accent); width: 24px; height: 24px; }
  @keyframes orbInvite {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 29, 111, 0.45); }
    50%      { transform: scale(1.08); box-shadow: 0 0 0 20px rgba(193, 29, 111, 0); }
  }
  .audio-orb::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: all 600ms ease;
  }
  .audio-orb.playing::before {
    opacity: 0.6;
    animation: orbPulse 2.6s ease-in-out infinite;
  }
  @keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.25); opacity: 0; }
  }
  .audio-orb-icon {
    width: 18px;
    height: 18px;
    fill: var(--cream);
  }
  .audio-orb.playing .audio-orb-icon { fill: var(--accent); }

  .audio-hint {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-faint);
    font-weight: 500;
  }
  .audio-orb.playing + .audio-hint { color: var(--cream-dim); }

  /* === Input (Wunschgefuehl) === */
  .input-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 520px;
  }
  .input-prompt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    color: var(--cream);
    letter-spacing: -0.02em;
  }
  .input-hint {
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream-dim);
    font-weight: 300;
    max-width: 380px;
  }
  .word-field {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cream-faint);
    padding: 18px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: 40px;
    color: var(--cream);
    text-align: center;
    outline: none;
    letter-spacing: -0.01em;
    transition: border-color 400ms ease;
  }
  .word-field::placeholder { color: var(--cream-faint); font-style: normal; }
  .word-field:focus { border-color: var(--accent); }

  /* === Branch buttons === */
  .branches {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
  }

  /* === Action buttons === */
  .actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
  }
  .btn {
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
    padding: 16px 36px;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 400ms ease;
    min-width: 200px;
  }
  .btn:hover {
    background: var(--cream);
    color: var(--bg-3);
    letter-spacing: 0.28em;
  }
  .btn.primary {
    background: var(--accent);
    border-color: var(--accent);
  }
  .btn.primary:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--bg-3);
  }
  .btn.ghost {
    border-color: var(--cream-faint);
    color: var(--cream-dim);
  }
  .btn.ghost:hover {
    border-color: var(--cream-dim);
    color: var(--cream);
    background: transparent;
    letter-spacing: 0.24em;
  }

  /* === Continue (appears after delay) === */
  .continue {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1200ms ease, transform 1200ms ease;
    pointer-events: none;
  }
  .continue.ready {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* === Dezente Weiter-Variante (text link unter Audio) === */
  .weiter-link {
    background: none;
    border: 1px solid var(--cream-mute);
    color: var(--cream);
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 14px 32px;
    margin-top: 24px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 1200ms ease, color 400ms ease, border-color 400ms ease, background 400ms ease, transform 1200ms ease;
    border-radius: 0;
  }
  .weiter-link.ready {
    opacity: 1;
    transform: translateY(0);
  }
  .weiter-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(193, 29, 111, 0.08);
  }
  .weiter-link::after {
    content: '\00a0\2192';
    margin-left: 8px;
    opacity: 0.8;
  }

  /* === Text Toggle === */
  .session-app .text-toggle {
    background: none;
    border: none;
    color: var(--cream-mute);
    font-family: inherit;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 12px;
    margin-top: 12px;
    font-weight: 400;
    opacity: 0.5;
    transition: opacity 240ms ease, color 240ms ease;
  }
  .session-app .text-toggle:hover { opacity: 1; color: var(--cream); }
  .session-app .step-anker[hidden] { display: none; }

  /* === Back navigation === */
  .session-app .nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
  }
  .session-app .nav-row .weiter-link,
  .session-app .nav-row .btn {
    margin-top: 0;
  }
  .session-app .back-link {
    background: none;
    border: none;
    color: var(--cream-mute);
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 400;
    opacity: 0.55;
    transition: opacity 300ms ease, color 300ms ease;
  }
  .session-app .back-link:hover {
    opacity: 1;
    color: var(--cream);
  }

  /* === Phase transition === */
  .session-app .phase-overlay {
    position: absolute;
    inset: 0;
    z-index: 30;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1200ms ease;
  }
  .phase-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  .phase-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(48px, 9vw, 120px);
    letter-spacing: -0.03em;
    color: var(--cream);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1600ms ease 200ms, transform 1600ms ease 200ms;
  }
  .phase-overlay.show .phase-name {
    opacity: 1;
    transform: translateY(0);
  }
  .phase-roman {
    display: block;
    font-size: 0.32em;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 400;
  }

  /* === Identity moment (Schritt 57) === */
  .identity-moment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
  }
  .identity-pre {
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dim);
    font-weight: 500;
  }
  .identity-word {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(80px, 16vw, 220px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent);
    text-transform: lowercase;
    text-shadow: 0 0 80px var(--accent-soft);
    animation: identityBreathe 4s ease-in-out infinite;
  }
  @keyframes identityBreathe {
    0%, 100% { opacity: 0.92; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.02); }
  }
  .identity-after {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: var(--cream-dim);
    letter-spacing: -0.005em;
  }

  /* === Closing artefact === */
  .closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 520px;
    text-align: center;
  }
  .closing-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .closing-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(40px, 6vw, 64px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--cream);
  }
  .artefact {
    border: 1px solid var(--cream-faint);
    padding: 48px 56px;
    background: rgba(250, 246, 238, 0.03);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .artefact-label {
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--cream-faint);
    font-weight: 500;
  }
  .artefact-word {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-size: 56px;
    color: var(--accent);
    letter-spacing: -0.02em;
    text-transform: lowercase;
  }
  .closing-instruction {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
    font-weight: 300;
    max-width: 380px;
  }

  /* === Step counter, sichtbar unten zentriert mit Phasen-Name === */
  .session-app .step-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 600ms ease;
    text-align: center;
  }
  .session-app.in-session .step-counter { opacity: 1; }
  .step-counter-phase {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    font-weight: 500;
  }
  .step-counter-nr {
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--cream-dim);
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    text-transform: uppercase;
  }
  .step-counter-nr strong {
    color: var(--accent);
    font-weight: 500;
  }

  @media (max-width: 640px) {
    main { padding: 20px; }
    .topbar { padding: 20px 20px; }
    .step { gap: 40px; }
    .artefact { padding: 32px 28px; }
    .artefact-word { font-size: 44px; }
    .step-counter { bottom: 16px; }
    .topbar { padding: 16px 16px 12px; }
    .wunschwort { font-size: 24px; }
  }

  /* Focus ring for accessibility */
  .session-app *:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }

/* Cover-Pledge: zweite p-Zeile, dezent kursivfrei kontrastreich */
.session-app .cover .cover-pledge {
  color: var(--accent);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  max-width: 380px;
  opacity: 0.9;
}

/* COVER · 5-Phasen-Mini (Sense / Crack / Allow / Activate / Free) */
.session-app .cover .cover-flow {
  list-style: none;
  padding: 0;
  margin: 16px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 460px;
  width: 100%;
  counter-reset: cover-flow;
}
.session-app .cover .cover-flow li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--cream-ghost);
}
.session-app .cover .cover-flow li:last-child { border-bottom: 1px solid var(--cream-ghost); }
.session-app .cover .cover-flow-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.session-app .cover .cover-flow-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-dim);
  font-weight: 300;
}
@media (max-width: 540px) {
  .session-app .cover .cover-flow li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }
  .session-app .cover .cover-flow-name { font-size: 12px; }
  .session-app .cover .cover-flow-text { font-size: 13px; }
}

/* COVER · Sevi-Intro-Video (Cloudflare Stream lazy-load) */
.session-app .cover-intro-video {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 40px;
}
.session-app .cover-intro-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(ellipse at center, rgba(193,29,111,0.18) 0%, rgba(31,16,24,0.95) 70%);
  border: 1px solid var(--cream-faint);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.session-app .cover-intro-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.session-app .cover-intro-video-frame.is-playing .cover-intro-play,
.session-app .cover-intro-video-frame.is-playing .cover-intro-label {
  display: none;
}
.session-app .cover-intro-play {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245, 236, 232, 0.95);
  color: #1f1018;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 300ms ease, background 300ms ease;
  padding-left: 4px;
}
.session-app .cover-intro-play:hover {
  transform: scale(1.08);
  background: var(--accent);
  color: #fff;
}
.session-app .cover-intro-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
  pointer-events: none;
}
@media (max-width: 640px) {
  .session-app .cover-intro-video { margin-bottom: 28px; }
  .session-app .cover-intro-play { width: 64px; height: 64px; }
}
