/* PERSONNN SOUL VARIANT - IA con Alma Focus */
/* Extends base styles.css with soul-centered overrides */

/* Essential Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Base Styles */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-icon-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    color: #9c7fa1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn.active {
    background: #8A2BE2;
    color: #FFFFFF;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Hero Base Styles - ART NY Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: #FFFFFF;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 14px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 1.5rem 3rem;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    border: 3px solid #000000;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #000000;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #FFFFFF;
    color: #000000;
    border: 3px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Preview Card */
.hero-preview {
    max-width: 600px;
    margin: 0 auto;
}

.preview-card {
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #888888;
}

.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28ca42; }

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.soul-status {
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(138, 43, 226, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9932CC;
}

.soul-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
}

.soul-avatar {
    font-size: 2rem;
}

.soul-info {
    flex: 1;
}

.soul-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.soul-stage {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

/* Product Section Styles - ART NY Style */
.productos-section, .casos-section, .final-cta {
    background: #FFFFFF;
    color: #000000;
}

.productos-header, .casos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.productos-title, .casos-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.productos-subtitle, .casos-subtitle {
    font-size: 1.5rem;
    color: #000000;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* PersonnnOS Core */
.personnnos-core {
    text-align: center;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
}

.core-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.personnnos-core h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.personnnos-core h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
}

.personnnos-core p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Core Features */
.core-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-icon {
    font-size: 1.2rem;
}

.core-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.available {
    background: rgba(138, 43, 226, 0.2);
    color: #8A2BE2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.badge.b2b {
    background: rgba(153, 50, 204, 0.2);
    color: #9932CC;
    border: 1px solid rgba(153, 50, 204, 0.3);
}

/* Product Grid */
.productos-category {
    margin: 4rem 0;
}

.productos-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.producto-card {
    background: rgba(138, 43, 226, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
}

.producto-card.featured {
    border: 2px solid #8A2BE2;
    position: relative;
}

.producto-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #8A2BE2;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.producto-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.producto-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.producto-card p {
    color: #9c7fa1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.producto-status {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.producto-status.available {
    background: rgba(138, 43, 226, 0.2);
    color: #8A2BE2;
}

/* Cases Grid */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.caso-card {
    background: rgba(138, 43, 226, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
}

.caso-avatar {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.caso-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.caso-card p {
    color: #9c7fa1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.caso-result {
    background: rgba(153, 50, 204, 0.1);
    border: 1px solid rgba(153, 50, 204, 0.3);
    padding: 1rem;
    border-radius: 12px;
    color: #9932CC;
    font-weight: 600;
    font-size: 14px;
}

/* Final CTA - ART NY Style */
.final-cta {
    text-align: center;
    padding: 6rem 0;
    background: #000000;
    color: #FFFFFF;
}

.final-cta h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.final-cta p {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Ecosystem Paths - Soul/Personal Platform - ART NY Style */
.ecosystem-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.ecosystem-path {
    background: #FFFFFF;
    border-radius: 0;
    padding: 2.5rem;
    border: 3px solid #000000;
    transition: all 0.3s ease;
}

.ecosystem-path:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ecosystem-path.consumer {
    border-left: 8px solid #000000;
}

.ecosystem-path.business {
    border-left: 8px solid #000000;
}

.path-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #000000;
}

.path-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.path-badge {
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000000;
}

.path-badge.b2c {
    background: #000000;
    color: #FFFFFF;
}

.path-badge.b2b {
    background: #FFFFFF;
    color: #000000;
}

/* Ecosystem Items - ART NY Style */
.ecosystem-items {
    display: grid;
    gap: 1.5rem;
}

.ecosystem-item {
    background: #FFFFFF;
    border-radius: 0;
    padding: 2rem;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    position: relative;
}

.ecosystem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ecosystem-item.main {
    border: 4px solid #000000;
    background: #FFFFFF;
}

.ecosystem-item.main::before {
    content: 'CORE SOUL';
    position: absolute;
    top: -15px;
    right: 20px;
    background: #000000;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ecosystem-item h4 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.ecosystem-item p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.item-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 2px solid #000000;
}

.item-status.free {
    background: #000000;
    color: #FFFFFF;
}

.item-status.coming {
    background: #FFFFFF;
    color: #000000;
}

.item-status.premium {
    background: #000000;
    color: #FFFFFF;
}

.ecosystem-item .btn-primary,
.ecosystem-item .btn-secondary {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 14px;
    padding: 0.75rem 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ecosystem-item .btn-secondary {
    background: #FFFFFF;
    border: 3px solid #000000;
    color: #000000;
}

.ecosystem-item .btn-secondary:hover {
    background: #000000;
    color: #FFFFFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-content {
        padding: 1rem;
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .productos-grid, .casos-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-paths {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ecosystem-path {
        padding: 1.5rem;
    }

    .path-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ecosystem-item {
        padding: 1.5rem;
    }

    .ecosystem-item h4 {
        font-size: 1.2rem;
    }
}

:root[data-theme="soul"] {
    /* Soul Color Palette - Purple/Mystical Theme */
    --primary-color: #8A2BE2;
    --secondary-color: #9932CC;
    --accent-color: #DA70D6;
    --soul-purple: #8A2BE2;
    --soul-violet: #9932CC;
    --soul-orchid: #DA70D6;
    --soul-plum: #DDA0DD;

    /* Soul Gradients */
    --gradient-primary: linear-gradient(45deg, #8A2BE2, #9932CC);
    --gradient-secondary: linear-gradient(45deg, #9932CC, #DA70D6);
    --gradient-accent: linear-gradient(45deg, #DA70D6, #DDA0DD);
    --gradient-hero: linear-gradient(135deg, #8A2BE2 0%, #9932CC 50%, #DA70D6 100%);
    --gradient-soul: linear-gradient(45deg, #8A2BE2, #9932CC, #DA70D6);

    /* Soul Surfaces */
    --surface-soul: rgba(138, 43, 226, 0.05);
    --surface-spirit: rgba(153, 50, 204, 0.05);
    --surface-energy: rgba(218, 112, 214, 0.05);

    /* Soul Shadows */
    --shadow-soul: 0 8px 32px rgba(138, 43, 226, 0.2);
    --shadow-spirit: 0 4px 20px rgba(153, 50, 204, 0.2);
    --shadow-energy: 0 6px 24px rgba(218, 112, 214, 0.2);
}

/* Hero Section - Soul Variant */
.hero[data-theme="soul"] {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero[data-theme="soul"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 75%, rgba(138, 43, 226, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(153, 50, 204, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(218, 112, 214, 0.1) 0%, transparent 70%);
    animation: soulFlow 10s ease-in-out infinite alternate;
}

@keyframes soulFlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Badge Styling */
.hero-badge[data-theme="soul"] {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-soul);
    border: none;
}

/* Title Styling */
.hero-title[data-theme="soul"] {
    background: var(--gradient-soul);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.title-highlight[data-theme="soul"] {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

/* Button Styling */
.btn-primary[data-theme="soul"] {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-soul);
    transition: all 0.3s ease;
}

.btn-primary[data-theme="soul"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

/* Preview Card */
.preview-card[data-theme="soul"] {
    border: 2px solid rgba(138, 43, 226, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soul);
}

/* Status Elements */
.status-dot[data-theme="soul"] {
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.soul-avatar[data-theme="soul"] {
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
    animation: soulHeartbeat 2s ease-in-out infinite;
}

@keyframes soulHeartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* PersonnnOS Core Section */
.personnnos-core[data-theme="soul"] {
    background: var(--surface-soul);
    border: 2px solid rgba(255, 107, 107, 0.2);
    position: relative;
}

.core-icon[data-theme="soul"] {
    filter: hue-rotate(340deg) saturate(1.2);
}

/* Badge Dot Animation */
.badge-dot.pulsing[data-theme="soul"] {
    background: var(--primary-color);
    animation: soulPulse 2s ease-in-out infinite;
}

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

/* Ecosystem Paths - Soul Focused */
.ecosystem-paths[data-theme="soul"] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ecosystem-path[data-theme="soul"] {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.ecosystem-path[data-theme="soul"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soul);
}

.ecosystem-path.consumer[data-theme="soul"] {
    border-left: 4px solid var(--primary-color);
}

/* Ecosystem Items - Soul Touch */
.ecosystem-item[data-theme="soul"] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.ecosystem-item[data-theme="soul"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-spirit);
}

.ecosystem-item.main[data-theme="soul"] {
    border: 2px solid var(--primary-color);
    background: var(--surface-soul);
}

/* Soul Connection Indicators */
.soul-connection {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--surface-spirit);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.connection-pulse {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: connectionPulse 2s ease-in-out infinite;
}

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

/* Emotional Resonance Elements */
.emotion-wave {
    height: 40px;
    background: var(--surface-energy);
    border-radius: 20px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.emotion-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gradient-primary), transparent);
    animation: emotionFlow 3s ease-in-out infinite;
}

@keyframes emotionFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Soul Memory Fragments */
.memory-soul {
    background: var(--surface-soul);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.75rem 0;
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.memory-soul::before {
    content: '💝';
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 1rem;
    opacity: 0.4;
}

.memory-soul:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(5px);
}

/* Feature Pills - Soul Energy */
.feature-pill[data-theme="soul"] {
    background: var(--surface-soul);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.feature-pill[data-theme="soul"]:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soul);
}

/* Navigation Updates */
.nav-cta[data-theme="soul"] {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-soul);
}

.nav-cta[data-theme="soul"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

/* Soul Stories Cards */
.soul-story {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.soul-story::before {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.soul-story:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soul);
}

/* Spiritual Energy Meter */
.energy-meter {
    background: var(--surface-energy);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.energy-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.energy-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
    transition: width 2s ease;
    animation: energyGrow 3s ease-in-out;
}

@keyframes energyGrow {
    0% { width: 0%; }
    100% { width: 90%; }
}

/* Soul Aura Effect */
.soul-aura {
    position: relative;
}

.soul-aura::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: auraGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes auraGlow {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .ecosystem-paths[data-theme="soul"] {
        gap: 1.5rem;
    }
    
    .soul-story::before {
        font-size: 1.2rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Micro-interactions */
.ecosystem-item[data-theme="soul"] .item-icon {
    transition: transform 0.3s ease;
}

.ecosystem-item[data-theme="soul"]:hover .item-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Emotional Breathing Animation */
.emotional-breath {
    animation: emotionalBreath 6s ease-in-out infinite;
}

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

/* Loading States */
.soul-loading {
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    background-size: 200% 100%;
    animation: soulShimmer 2s infinite;
}

@keyframes soulShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .soul-avatar[data-theme="soul"],
    .energy-fill,
    .soul-aura::before {
        animation: none;
    }
    
    .hero[data-theme="soul"]::before {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .ecosystem-path[data-theme="soul"] {
        border: 3px solid var(--primary-color);
    }
    
    .soul-story {
        border-left: 6px solid var(--primary-color);
    }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
    :root[data-theme="soul"] {
        --surface-soul: rgba(138, 43, 226, 0.1);
        --surface-spirit: rgba(153, 50, 204, 0.1);
        --surface-energy: rgba(218, 112, 214, 0.1);
    }
}/* Floating 
Scroll Capture Styles */
.floating-scroll-capture {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(78, 205, 196, 0.95));
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    max-width: 350px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-scroll-capture.show {
    transform: translateY(0);
    opacity: 1;
}

.capture-content {
    text-align: center;
    color: white;
}

.capture-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.capture-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.capture-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white;
}

.email-capture-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.email-capture-form input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.9rem;
}

.email-capture-form input[type="email"]:focus {
    outline: none;
    background: white;
}

.email-capture-form button {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-capture-form button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.capture-dismiss {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.capture-dismiss:hover {
    color: white;
}

/* Dynamic Modal Styles for Soul Experience */

/* Spiritual Awakening Modal */
.spiritual-awakening {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(78, 205, 196, 0.95));
    color: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
    z-index: 10001;
    text-align: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 90%;
}

.spiritual-awakening.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.awakening-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.awakening-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: starPulse 2s ease-in-out infinite;
}

.awakening-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.awakening-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.awakening-energy {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Soul Dialogue Modal */
.soul-dialogue {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(78, 205, 196, 0.95));
    color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    max-width: 380px;
    z-index: 10001;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.soul-dialogue.show {
    transform: translateX(0);
}

.dialogue-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dialogue-avatar {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.dialogue-message h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.dialogue-message p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.dialogue-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.dialogue-connect,
.dialogue-wait {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
}

.dialogue-connect:hover,
.dialogue-wait:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dialogue-connect {
    background: rgba(255, 255, 255, 0.3);
}

/* Soul Milestone Achievement Modal */
.soul-milestone {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.5);
    z-index: 10001;
    text-align: center;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 450px;
    width: 90%;
}

.soul-milestone.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.milestone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.milestone-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: bounce 1s ease-in-out infinite;
}

.milestone-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.milestone-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.milestone-reward {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
        opacity: 0.8;
    }
    75% {
        transform: rotate(10deg) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Modal Overlay for Full Screen Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

/* Close Button for Modals */
.modal-close,
.awakening-close,
.dialogue-close,
.milestone-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover,
.awakening-close:hover,
.dialogue-close:hover,
.milestone-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-scroll-capture {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .email-capture-form {
        flex-direction: column;
    }

    .email-capture-form button {
        width: 100%;
    }

    .soul-dialogue {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .spiritual-awakening,
    .soul-milestone {
        width: 95%;
        padding: 2rem;
    }

    .dialogue-actions {
        flex-direction: column;
    }

    .awakening-icon,
    .milestone-icon {
        font-size: 2.5rem;
    }
}