/* ═══════════════════════════════════════════════════════════════ */
/*  HEALING HUB SANCTUARY — Immersive Digital Sanctuary          */
/*  Overrides and enhancements for the sanctuary experience      */
/* ═══════════════════════════════════════════════════════════════ */

:root {
    --sanctuary-bg-deep: #0a0a0a;
    --sanctuary-bg-mid: #111110;
    --sanctuary-bg-warm: #151311;
    --sanctuary-gold: #d4af37;
    --sanctuary-gold-dim: rgba(212,175,55,0.08);
    --sanctuary-ivory: #c8b89a;
    --sanctuary-text: #e8dcc8;
    --sanctuary-text-dim: rgba(200,184,154,0.55);
    --sanctuary-border: rgba(212,175,55,0.12);
    --sanctuary-glow: rgba(212,175,55,0.25);
    --sanctuary-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --emotion-heavy: 220, 70%, 20%;
    --emotion-numb: 210, 10%, 18%;
    --emotion-anxious: 270, 40%, 22%;
    --emotion-lonely: 240, 30%, 20%;
    --emotion-angry: 0, 35%, 20%;
    --emotion-grateful: 42, 60%, 22%;
}

/* ─── Entry Transition Overlay ─── */
.sanctuary-entry-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--sanctuary-bg-deep);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sanctuary-entry-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─── Immersive Background System ─── */
#healing-tab {
    background:
        radial-gradient(circle at 50% 30%, rgba(20,18,14,1) 0%, var(--sanctuary-bg-deep) 70%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    transition: background 1.2s ease;
}

#healing-tab::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 15%, rgba(212,175,55,0.035) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200,184,154,0.025) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 85%, rgba(212,175,55,0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ─── Parallax Fog Layer ─── */
#healing-tab::after {
    content: '';
    position: absolute;
    top: 0; left: -50%; right: -50%; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(200,184,154,0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(212,175,55,0.02) 0%, transparent 35%);
    animation: fogDrift 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes fogDrift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(5%) translateY(-2%); }
}

/* ─── Emotional Tint Overlays ─── */
#healing-tab.emotion-heavy { background: radial-gradient(circle at 50% 30%, hsl(var(--emotion-heavy)) 0%, var(--sanctuary-bg-deep) 70%); }
#healing-tab.emotion-numb { background: radial-gradient(circle at 50% 30%, hsl(var(--emotion-numb)) 0%, var(--sanctuary-bg-deep) 70%); }
#healing-tab.emotion-anxious { background: radial-gradient(circle at 50% 30%, hsl(var(--emotion-anxious)) 0%, var(--sanctuary-bg-deep) 70%); }
#healing-tab.emotion-lonely { background: radial-gradient(circle at 50% 30%, hsl(var(--emotion-lonely)) 0%, var(--sanctuary-bg-deep) 70%); }
#healing-tab.emotion-angry { background: radial-gradient(circle at 50% 30%, hsl(var(--emotion-angry)) 0%, var(--sanctuary-bg-deep) 70%); }
#healing-tab.emotion-grateful { background: radial-gradient(circle at 50% 30%, hsl(var(--emotion-grateful)) 0%, var(--sanctuary-bg-deep) 70%); }

/* ─── Enhanced Particle System ─── */
.sanctuary-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sanctuary-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.6) 0%, rgba(212,175,55,0.1) 70%);
    animation: particleDrift linear infinite;
    will-change: transform;
}

@keyframes particleDrift {
    0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    8% { opacity: 0.7; transform: translateY(88vh) translateX(8px) scale(1); }
    50% { transform: translateY(45vh) translateX(-12px) scale(0.9); opacity: 0.5; }
    92% { opacity: 0.3; transform: translateY(8vh) translateX(6px) scale(0.6); }
    100% { transform: translateY(-3vh) translateX(0) scale(0); opacity: 0; }
}

/* ─── Sanctuary Mode Toggle ─── */
.sanctuary-mode-toggle {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(15,15,12,0.85);
    border: 1px solid var(--sanctuary-border);
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
}

.sanctuary-mode-toggle.visible {
    opacity: 1;
    pointer-events: all;
}

.sanctuary-mode-toggle:hover {
    border-color: var(--sanctuary-glow);
    box-shadow: 0 0 16px rgba(212,175,55,0.15);
}

.sanctuary-mode-toggle .toggle-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sanctuary-mode-toggle.active .toggle-icon {
    transform: scale(1.15);
}

.sanctuary-mode-toggle .toggle-label {
    color: var(--sanctuary-ivory);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ─── Healing Container Override ─── */
.healing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Feature Hero Override ─── */
.feature-hero.feature-healing {
    background: transparent !important;
    border: none !important;
    padding: 60px 24px 20px;
    text-align: center;
}

.feature-hero.feature-healing h1 {
    color: var(--sanctuary-ivory) !important;
    font-size: 2.8rem;
    font-weight: 200;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(212,175,55,0.15);
}

.feature-hero.feature-healing .feature-tagline {
    color: var(--sanctuary-text-dim);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Emotional Entry Gate ─── */
.emotional-gate {
    text-align: center;
    padding: 50px 24px 60px;
    position: relative;
    z-index: 2;
}

.emotional-gate-question {
    color: var(--sanctuary-ivory);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(15px);
    animation: sanctuaryReveal 0.8s ease-out 0.3s forwards;
}

.emotion-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.emotion-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(25,22,18,0.7);
    border: 1px solid rgba(200,184,154,0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 90px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

.emotion-bubble:nth-child(1) { animation: bubbleReveal 0.5s ease-out 0.5s forwards; }
.emotion-bubble:nth-child(2) { animation: bubbleReveal 0.5s ease-out 0.6s forwards; }
.emotion-bubble:nth-child(3) { animation: bubbleReveal 0.5s ease-out 0.7s forwards; }
.emotion-bubble:nth-child(4) { animation: bubbleReveal 0.5s ease-out 0.8s forwards; }
.emotion-bubble:nth-child(5) { animation: bubbleReveal 0.5s ease-out 0.9s forwards; }
.emotion-bubble:nth-child(6) { animation: bubbleReveal 0.5s ease-out 1.0s forwards; }

@keyframes bubbleReveal {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.emotion-bubble .emotion-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.emotion-bubble .emotion-label {
    color: var(--sanctuary-text-dim);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
}

.emotion-bubble:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(35,30,25,0.8);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 12px rgba(212,175,55,0.08);
}

.emotion-bubble:hover .emotion-icon {
    transform: scale(1.15);
}

.emotion-bubble:hover .emotion-label {
    color: var(--sanctuary-ivory);
}

.emotion-bubble.active {
    border-color: var(--sanctuary-gold);
    background: rgba(212,175,55,0.08);
    box-shadow: 0 0 20px rgba(212,175,55,0.15), 0 8px 24px rgba(0,0,0,0.3);
    transform: scale(1.08);
}

.emotion-bubble.active .emotion-label {
    color: var(--sanctuary-gold);
}

/* ─── Hero Meditation Section ─── */
.meditation-hero {
    position: relative;
    padding: 60px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.meditation-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
}

.meditation-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.meditation-hero-orb {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orb-glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    animation: heroOrbGlow 6s ease-in-out infinite;
}

@keyframes heroOrbGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.hero-orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.15);
    animation: heroRingPulse 5s ease-in-out infinite;
}

.hero-orb-ring-1 { width: 100px; height: 100px; border-color: rgba(212,175,55,0.3); animation-delay: 0s; }
.hero-orb-ring-2 { width: 140px; height: 140px; animation-delay: 0.5s; }
.hero-orb-ring-3 { width: 180px; height: 180px; border-color: rgba(212,175,55,0.08); animation-delay: 1s; }

@keyframes heroRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.06); opacity: 0.9; }
}

.hero-orb-core {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, #e8c547 0%, #d4af37 40%, #b8942e 80%);
    box-shadow:
        0 0 30px rgba(212,175,55,0.8),
        0 0 60px rgba(212,175,55,0.4),
        0 0 120px rgba(212,175,55,0.15);
    animation: heroCoreBreathe 8s ease-in-out infinite;
    z-index: 1;
    position: relative;
}

@keyframes heroCoreBreathe {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.2); }
    60% { transform: scale(1.2); }
    90% { transform: scale(1); }
}

.hero-avatar-silhouette {
    position: absolute;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-avatar-silhouette::after {
    content: '🧘';
    font-size: 2.2rem;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.4));
}

.meditation-hero-tagline {
    color: var(--sanctuary-ivory);
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.meditation-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(184,150,12,0.1) 100%);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 30px;
    color: var(--sanctuary-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 400;
}

.meditation-hero-cta:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(184,150,12,0.15) 100%);
    border-color: var(--sanctuary-gold);
    box-shadow: 0 0 24px rgba(212,175,55,0.25), 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* ─── Daily Reminder Override ─── */
.daily-reminder-banner {
    max-width: 700px;
    margin: 0 auto 60px !important;
    padding: 30px 40px !important;
    background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, rgba(200,184,154,0.02) 50%, rgba(212,175,55,0.04) 100%) !important;
    border: 1px solid rgba(212,175,55,0.1) !important;
    border-radius: 16px;
}

/* ─── Zone Divider ─── */
.sanctuary-zone-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(212,175,55,0.2) 50%, transparent 95%);
    margin: 20px auto;
    max-width: 80%;
}

/* ─── Zone Titles ─── */
.sanctuary-zone-title {
    text-align: center;
    padding: 50px 24px 36px;
}

.sanctuary-zone-title h3 {
    color: var(--sanctuary-ivory);
    font-size: 1.3rem;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.sanctuary-zone-title p {
    color: var(--sanctuary-text-dim);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ─── ZONE 1: Stillness ─── */
.zone-stillness {
    padding: 0 24px 60px;
}

.stillness-orb-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.stillness-orb {
    position: relative;
    width: 180px; height: 180px;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.stillness-orb:hover {
    transform: scale(1.08);
}

.stillness-orb-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(212,175,55,0.1) 70%);
    box-shadow: 0 0 40px rgba(212,175,55,0.2), 0 0 80px rgba(212,175,55,0.08);
    animation: stillnessBreath 8s ease-in-out infinite;
}

@keyframes stillnessBreath {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(212,175,55,0.2), 0 0 80px rgba(212,175,55,0.08); }
    30% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 60px rgba(212,175,55,0.35), 0 0 120px rgba(212,175,55,0.12); }
    60% { transform: translate(-50%, -50%) scale(1.3); }
}

.stillness-orb-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.15);
    animation: stillnessRing 8s ease-in-out infinite;
}

.stillness-orb-ring:nth-child(2) { width: 110px; height: 110px; border-color: rgba(212,175,55,0.25); animation-delay: 0s; }
.stillness-orb-ring:nth-child(3) { width: 140px; height: 140px; animation-delay: 0.4s; }
.stillness-orb-ring:nth-child(4) { width: 170px; height: 170px; border-color: rgba(212,175,55,0.08); animation-delay: 0.8s; }

@keyframes stillnessRing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    35% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.9; }
    65% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.8; }
}

.stillness-label {
    color: var(--sanctuary-ivory);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stillness-sublabel {
    color: var(--sanctuary-text-dim);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.stillness-tools {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stillness-tool-btn {
    padding: 10px 24px;
    background: rgba(25,22,18,0.7);
    border: 1px solid rgba(200,184,154,0.1);
    border-radius: 24px;
    color: var(--sanctuary-ivory);
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stillness-tool-btn:hover {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 0 12px rgba(212,175,55,0.12);
    transform: translateY(-2px);
}

/* ─── ZONE 2: Expression — Cinematic Horizontal Scroll ─── */
.zone-expression {
    padding: 0 0 60px;
    overflow: hidden;
}

.expression-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 40px 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.expression-scroll::-webkit-scrollbar {
    display: none;
}

.expression-panel {
    flex: 0 0 340px;
    min-height: 380px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(200,184,154,0.08);
    background: linear-gradient(160deg, rgba(30,27,22,0.95) 0%, rgba(18,16,13,0.98) 100%);
}

.expression-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(212,175,55,0.06) 0%, transparent 100%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.expression-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.expression-panel:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212,175,55,0.25);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 30px rgba(212,175,55,0.06);
}

.expression-panel:hover::after {
    border-color: rgba(212,175,55,0.15);
    box-shadow: inset 0 0 30px rgba(212,175,55,0.03);
}

.expression-panel-bg {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 180px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.expression-panel:hover .expression-panel-bg {
    opacity: 0.45;
}

.expression-panel-content {
    position: relative;
    z-index: 2;
    padding: 140px 28px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expression-panel-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}

.expression-panel h4 {
    color: var(--sanctuary-text);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.expression-panel p {
    color: var(--sanctuary-text-dim);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 auto;
    font-weight: 300;
}

.expression-panel-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 28px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    color: var(--sanctuary-gold);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.expression-panel-cta:hover {
    background: rgba(212,175,55,0.15);
    box-shadow: 0 0 16px rgba(212,175,55,0.2);
}

/* ─── ZONE 3: Growth — Glowing Path ─── */
.zone-growth {
    padding: 0 24px 80px;
}

.growth-path {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.growth-path::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(212,175,55,0.4) 0%, rgba(212,175,55,0.15) 60%, transparent 100%);
}

.growth-node {
    position: relative;
    padding: 28px 32px;
    margin-bottom: 28px;
    background: linear-gradient(160deg, rgba(30,27,22,0.8) 0%, rgba(20,18,14,0.9) 100%);
    border: 1px solid rgba(200,184,154,0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.growth-node::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 36px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    border: 2px solid rgba(212,175,55,0.5);
    box-shadow: 0 0 12px rgba(212,175,55,0.2);
    transition: all 0.3s ease;
}

.growth-node:hover::before {
    background: var(--sanctuary-gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
    transform: scale(1.2);
}

.growth-node:hover {
    border-color: rgba(212,175,55,0.2);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 16px rgba(212,175,55,0.05);
}

.growth-node-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.growth-node h4 {
    color: var(--sanctuary-text);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.growth-node p {
    color: var(--sanctuary-text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 16px;
    font-weight: 300;
}

.growth-node-cta {
    display: inline-block;
    padding: 8px 22px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 18px;
    color: var(--sanctuary-gold);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.growth-node-cta:hover {
    background: rgba(212,175,55,0.1);
    box-shadow: 0 0 12px rgba(212,175,55,0.15);
}

/* ─── Scroll Reveal Animations ─── */
.sanctuary-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sanctuary-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes sanctuaryReveal {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ─── Button Hover Glow ─── */
#healing-tab .btn-gold {
    transition: all 0.3s ease;
}

#healing-tab .btn-gold:hover {
    box-shadow: 0 0 16px rgba(212,175,55,0.35), 0 4px 16px rgba(0,0,0,0.3);
}

/* ─── Sanctuary Back Button Override ─── */
.sanctuary-back-btn {
    max-width: 1200px;
    margin: 0 auto 24px !important;
    display: block;
}

/* ─── Gold Shimmer Effect ─── */
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background-image: linear-gradient(90deg, transparent 30%, rgba(212,175,55,0.08) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: goldShimmer 2s ease-in-out;
}

/* ─── Progress Bar Animation ─── */
.meditation-ai-progress-bar {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Healing Section Active Override ─── */
.healing-section.active {
    animation: sanctuaryReveal 0.5s ease-out;
}

/* ─── Override old sanctuary-categories to hide when new zones active ─── */
.sanctuary-categories {
    padding: 0 !important;
    animation: none !important;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .feature-hero.feature-healing h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .emotional-gate {
        padding: 30px 16px 40px;
    }

    .emotional-gate-question {
        font-size: 1.15rem;
    }

    .emotion-bubbles {
        gap: 10px;
    }

    .emotion-bubble {
        min-width: 75px;
        padding: 12px 14px;
    }

    .meditation-hero {
        padding: 40px 16px 60px;
    }

    .meditation-hero-orb {
        width: 150px; height: 150px;
    }

    .hero-orb-core {
        width: 45px; height: 45px;
    }

    .expression-panel {
        flex: 0 0 280px;
        min-height: 320px;
    }

    .expression-scroll {
        padding: 20px 20px 30px;
    }

    .growth-path {
        padding-left: 30px;
    }

    .sanctuary-mode-toggle {
        top: 70px;
        right: 12px;
        padding: 8px 14px;
    }

    .sanctuary-mode-toggle .toggle-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-hero.feature-healing h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .emotion-bubble {
        min-width: 65px;
        padding: 10px 12px;
    }

    .emotion-bubble .emotion-icon {
        font-size: 1.6rem;
    }

    .expression-panel {
        flex: 0 0 260px;
    }
}

.audio-gesture-gate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 12px;
}

.gesture-gate-content {
    text-align: center;
    color: #e8dcc8;
    max-width: 320px;
    padding: 40px;
}

.gesture-gate-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.gesture-gate-content h3 {
    font-size: 1.3rem;
    color: #b8960c;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.gesture-gate-content p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 24px;
}

.btn-gold {
    background: linear-gradient(135deg, #b8960c, #d4a017);
    color: #1a1a1a;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4a017, #e8b829);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(184, 150, 12, 0.3);
}

.audio-controls-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    margin-top: 12px;
    width: fit-content;
}

.audio-mute-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
}

.audio-volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #333;
    border-radius: 2px;
    outline: none;
}

.audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #b8960c;
    cursor: pointer;
}
