/**
 * Motivation Magnet - Zen Design System (Premium Overhaul)
 * Aesthetic: Cinematic, Glassmorphic, Brand-Aligned
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,900;1,900&family=Outfit:wght@300;600;900&family=Inter:wght@400;700&display=swap');

:root {
    --motivation-bg: #030305;
    --motivation-surface: rgba(255, 255, 255, 0.03);
    --motivation-border: rgba(255, 255, 255, 0.08);
    --motivation-glass: rgba(255, 255, 255, 0.02);
    --motivation-accent: #109957; /* Core Wizmandu Emerald */
    --motivation-accent-glow: rgba(16, 153, 87, 0.4);
    --motivation-accent-vibrant: #10b981; 
    --motivation-text: #f8fafc;
    --motivation-text-muted: #64748b;
}

/* Zen Layout Container */
.motivation-zen-body {
    background-color: var(--motivation-bg);
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(16, 153, 87, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    color: var(--motivation-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

/* Cinematic Atmospheric Blobs */
.motivation-zen-body::before,
.motivation-zen-body::after {
    content: '';
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    animation: move-blobs 30s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.motivation-zen-body::before {
    background: var(--motivation-accent);
    top: -300px;
    left: -300px;
}

.motivation-zen-body::after {
    background: #0f172a;
    bottom: -300px;
    right: -300px;
    animation-delay: -15s;
}

@keyframes move-blobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 150px) scale(1.3); }
}

/* Header Styling */
.zen-journey-header {
    position: relative;
    z-index: 20;
    padding: 140px 20px 80px;
    text-align: center;
}

.zen-journey-header .kicker {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--motivation-accent-vibrant);
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.zen-journey-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.zen-journey-header p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--motivation-text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* The Winding Journey Conduit */
.wisdom-path-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 300px;
    z-index: 10;
}

.path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.path-line {
    stroke: var(--motivation-accent);
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
    opacity: 0.2;
    filter: drop-shadow(0 0 12px var(--motivation-accent-glow));
}

.path-line.active {
    stroke: #ffffff;
    stroke-width: 2;
    opacity: 0.4;
    stroke-dasharray: 10 15;
    animation: flow-line 20s linear infinite;
}

@keyframes flow-line {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: 1000; }
}

/* Floating Islands (Nodes) */
.path-node {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 36px; /* Squircle design */
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.95));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
}

.path-node:hover {
    transform: translate(-50%, -50%) translateY(-15px) scale(1.1);
    border-color: var(--motivation-accent-vibrant);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px var(--motivation-accent-glow);
}

.path-node.active {
    background: var(--motivation-accent);
    border-color: #ffffff;
    box-shadow: 0 0 60px var(--motivation-accent-glow);
    animation: node-drift 4s infinite ease-in-out;
}

@keyframes node-drift {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.node-index {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #ffffff;
}

.path-node.locked {
    opacity: 0.2;
    filter: grayscale(1) blur(1px);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}


