/* ============================================
   ORIGENES PAGE STYLES
   ============================================ */

.origenes-page {
    background: var(--void-deep);
}

/* Navigation Bar */
.origenes-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(150, 150, 255, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
}

.nav-sigil {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-mist);
    text-decoration: none;
    font-size: 0.85rem;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--bio-cyan);
    border-bottom-color: var(--bio-cyan);
}

.nav-discord {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(88, 101, 242, 0.3));
    padding: var(--space-xs) var(--space-sm) !important;
    border-radius: 4px;
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.nav-discord:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.5), rgba(88, 101, 242, 0.5));
    border-bottom-color: transparent !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 30, 0.98);
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

/* Offset for fixed nav */
.origenes-content {
    padding-top: 70px;
}

/* ============================================
   INVITATIONS (Grid System)
   ============================================ */

.invitations-section {
    padding-bottom: var(--space-md);
    text-align: center;
    /* Robust full-width breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.invitations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
    /* Centers the grid in the section */
    justify-content: center;
    /* Centers columns if they don't fill width */
    width: 100%;
}

.invitation {
    background: linear-gradient(180deg, rgba(25, 25, 40, 0.6) 0%, rgba(10, 10, 20, 0.4) 100%);
    border: 1px solid rgba(150, 150, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    /* Ensure equal height behavior */
}

/* Scroll reveal class (handled by script.js) */
.invitation.visible {
    opacity: 1;
    transform: translateY(0);
}

.invitation:hover {
    background: rgba(30, 30, 60, 0.8);
    border-color: var(--bio-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.invitation-number {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
    display: block;
}

.invitation-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto var(--space-md) auto;
    display: block;
    filter: brightness(1.1) saturate(1);
    transition: transform var(--transition-fast);
}

.invitation:hover .invitation-icon {
    transform: scale(1.1);
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(150, 200, 255, 0.5));
}

.invitation-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-pure);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.invitation-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    flex-grow: 1;
    /* Pushes content to fill height */
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .invitations-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .invitations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .invitations-grid {
        grid-template-columns: 1fr;
    }

    .invitation {
        padding: var(--space-lg) var(--space-md);
        margin-bottom: var(--space-md);
    }
}

/* Main Content */
.origenes-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
}

/* Hero */
.origenes-hero {
    text-align: center;
    padding: var(--space-2xl) 0;
    margin-bottom: var(--space-xl);
}

.origenes-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--text-pure);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.hero-sigil-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.hero-sigil-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: sigilRainbow 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(155, 48, 255, 0.4));
}

.origenes-subtitle {
    font-size: 1.2rem;
    color: var(--text-mist);
    font-style: italic;
}

/* Sections */
.origenes-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(150, 150, 255, 0.1);
}

.origenes-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-pure);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
}

.origenes-section p {
    margin-bottom: var(--space-md);
    line-height: 2;
}

.origenes-section em {
    color: var(--bio-cyan);
    font-style: normal;
}

.origenes-section strong {
    color: var(--text-pure);
}

.section-intro {
    color: var(--text-mist);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

/* Coming Soon Placeholder */
.coming-soon {
    color: var(--text-whisper);
    font-style: italic;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border: 1px dashed rgba(150, 150, 255, 0.2);
    border-radius: 8px;
    background: rgba(20, 20, 50, 0.3);
}

/* Corrientes */
.corriente {
    background: rgba(20, 20, 50, 0.5);
    padding: var(--space-lg);
    border-radius: 8px;
    margin-bottom: var(--space-lg);
    border-left: 3px solid var(--bio-magenta);
}

.corriente-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.corriente-sigil {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(150, 100, 255, 0.5));
}

.corriente-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-pure);
    margin-bottom: 0;
}

.corriente-header .corriente-source {
    margin-bottom: 0;
}

.corriente h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-pure);
    margin-bottom: var(--space-xs);
}

.corriente-source {
    font-size: 0.85rem;
    color: var(--text-whisper);
    margin-bottom: var(--space-md);
}

.corriente blockquote {
    font-style: italic;
    color: var(--bio-cyan);
    padding: var(--space-sm) var(--space-md);
    border-left: 2px solid var(--bio-cyan);
    margin: var(--space-md) 0;
    background: rgba(80, 200, 255, 0.05);
}

.sub-corrientes {
    margin-top: var(--space-md);
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.sub-tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(150, 100, 255, 0.2);
    border-radius: 20px;
    color: var(--bio-magenta);
}

/* Sub-corrientes explicadas */
.sub-corrientes-explained {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(150, 100, 255, 0.2);
}

.sub-corrientes-explained h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--bio-magenta);
    margin-bottom: var(--space-xs);
    margin-top: 0;
}

.sub-corrientes-explained p {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.sub-corriente-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(150, 100, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(150, 100, 255, 0.15);
}

.sub-corriente-item:last-child {
    margin-bottom: 0;
}

.sub-sigil {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(150, 100, 255, 0.5));
    flex-shrink: 0;
}

/* Glitch Animation */
@keyframes glitch {
    0% {
        transform: translate(0);
        filter: none;
    }

    20% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }

    40% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(180deg);
    }

    60% {
        transform: translate(2px, 2px);
        filter: hue-rotate(270deg);
    }

    80% {
        transform: translate(2px, -2px);
        filter: hue-rotate(360deg);
    }

    100% {
        transform: translate(0);
        filter: none;
    }
}

@keyframes glitchText {

    0%,
    100% {
        text-shadow: none;
    }

    25% {
        text-shadow: -2px 0 var(--bio-cyan), 2px 0 var(--bio-magenta);
    }

    50% {
        text-shadow: 2px 0 var(--bio-cyan), -2px 0 var(--bio-magenta);
    }

    75% {
        text-shadow: -1px 0 var(--bio-magenta), 1px 0 var(--bio-cyan);
    }
}

.origenes-title {
    animation: glitchText 3s ease-in-out infinite;
}

.arch-sigil:hover {
    animation: glitch 0.3s ease-in-out;
}

.corriente-sigil:hover {
    animation: glitch 0.3s ease-in-out;
}

.sub-sigil:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Arquetipos Grid */
.arquetipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.arquetipo {
    background: rgba(20, 20, 50, 0.3);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid rgba(150, 150, 255, 0.1);
    transition: all var(--transition-fast);
}

.arquetipo:hover {
    border-color: var(--bio-cyan);
    transform: translateY(-2px);
}

.arquetipo h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-pure);
    margin-bottom: var(--space-xs);
}

.arquetipo-tradition {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.arquetipo p:last-child {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Convergence Section */
.convergence-section {
    text-align: center;
    border-bottom: none;
}

.convergence-flow {
    padding: var(--space-xl);
}

.convergence-flow p {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.convergence-flow .result {
    font-size: 1.6rem;
    margin-top: var(--space-lg);
}

.lila-word {
    font-family: var(--font-display);
    font-weight: 600;
    background: linear-gradient(90deg, var(--bio-magenta), var(--bio-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Architecture Section - Emanation Mandala (from v0) */
.architecture-section {
    text-align: center;
}

/* Emanation Mandala Layout */
.emanation-mandala {
    display: grid;
    grid-template-areas:
        ".      north   ."
        "west   center  east"
        ".      south   .";
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
    position: relative;
    min-height: auto;
    align-items: center;
    justify-content: center;
}

/* Cardinal positions */
.mandala-north {
    grid-area: north;
    justify-self: center;
    position: relative;
    z-index: 5;
}

.mandala-south {
    grid-area: south;
    justify-self: center;
    position: relative;
    z-index: 5;
}

.mandala-east {
    grid-area: east;
    justify-self: start;
    position: relative;
    z-index: 5;
}

.mandala-west {
    grid-area: west;
    justify-self: end;
    position: relative;
    z-index: 5;
}

.mandala-center {
    grid-area: center;
    justify-self: center;
    z-index: 10;
}

/* Emanation Lines (Refactored to pseudo-elements for perfect alignment) */
.emanation-lines {
    display: none;
}

/* Connecting Lines via Pseudo-elements */
.mandala-north::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: var(--space-lg);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.6), rgba(155, 48, 255, 0.4));
    z-index: 1;
}

.mandala-south::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: var(--space-lg);
    background: linear-gradient(to top, rgba(45, 212, 150, 0.6), rgba(155, 48, 255, 0.4));
    z-index: 1;
}

.mandala-west::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: var(--space-lg);
    height: 2px;
    background: linear-gradient(to right, rgba(80, 200, 255, 0.6), rgba(155, 48, 255, 0.4));
    z-index: 1;
}

.mandala-east::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: var(--space-lg);
    height: 2px;
    background: linear-gradient(to left, rgba(255, 100, 100, 0.6), rgba(155, 48, 255, 0.4));
    z-index: 1;
}

/* Updated Component Sizing */
.component {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: rgb(20, 20, 35);
    border-radius: 14px;
    border: 1px solid rgba(150, 150, 255, 0.2);
    transition: all var(--transition-fast);
    /* Wider cards */
    min-width: 260px;
    max-width: 320px;
    width: 100%;
    position: relative;
    /* Context for z-index if needed */
    z-index: 2;
    /* Sit above lines */
}

.component:hover {
    border-color: var(--bio-cyan);
    transform: scale(1.02);
}

.component-icon {
    margin-bottom: var(--space-sm);
}

.component-sigil {
    width: 64px;
    height: 64px;
    object-fit: contain;
    /* No filter - use PNG original colors, glows added per component */
}

.component-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-pure);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.component-role {
    font-size: 0.9rem;
    color: var(--bio-cyan);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.component-desc {
    font-size: 0.9rem;
    color: var(--text-mist);
    line-height: 1.5;
    text-align: center;
}

/* Center LILA - The Source */
.mandala-center.component {
    padding: var(--space-lg);
    min-width: 240px;
    max-width: 300px;
    background: rgba(25, 20, 45, 0.95);
    border: 2px solid rgba(155, 48, 255, 0.4);
    animation: emanatePulse 4s ease-in-out infinite;
}

.mandala-center .component-sigil {
    width: 90px;
    height: 90px;
    animation: sigilRainbow 6s linear infinite;
}

/* Sigil glow effects - Base colors from PNG */
/* Thelema - Glow dorado */
.component-engine .component-sigil {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9));
}

/* Babalon - Glow rojo */
.component-fuel .component-sigil {
    filter: drop-shadow(0 0 15px rgba(200, 30, 50, 0.9));
}

/* Caos - Glow amatista (purpura, no rosa) */
.component-space .component-sigil {
    filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.85));
}

/* Maat - Glow azul/teal */
.component-steering .component-sigil {
    filter: drop-shadow(0 0 12px rgba(45, 180, 160, 0.9));
}

/* LILA - Rainbow glow */
@keyframes sigilRainbow {
    0% {
        filter: brightness(1.3) hue-rotate(0deg) drop-shadow(0 0 15px rgba(255, 100, 100, 0.6));
    }

    25% {
        filter: brightness(1.3) hue-rotate(90deg) drop-shadow(0 0 15px rgba(255, 255, 100, 0.6));
    }

    50% {
        filter: brightness(1.3) hue-rotate(180deg) drop-shadow(0 0 15px rgba(100, 255, 100, 0.6));
    }

    75% {
        filter: brightness(1.3) hue-rotate(270deg) drop-shadow(0 0 15px rgba(100, 100, 255, 0.6));
    }

    100% {
        filter: brightness(1.3) hue-rotate(360deg) drop-shadow(0 0 15px rgba(255, 100, 100, 0.6));
    }
}

@keyframes emanatePulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(155, 48, 255, 0.4),
            0 0 60px rgba(45, 212, 150, 0.2),
            inset 0 0 30px rgba(155, 48, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 50px rgba(155, 48, 255, 0.6),
            0 0 100px rgba(45, 212, 150, 0.3),
            inset 0 0 40px rgba(155, 48, 255, 0.15);
    }
}

/* Emanation Lines */
.emanation-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.emanation-line {
    position: absolute;
    opacity: 0.6;
}

.line-north {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 2px;
    height: 30%;
    background: linear-gradient(to top, rgba(155, 48, 255, 0.8), rgba(212, 175, 55, 0.4) 60%, transparent);
}

.line-south {
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 2px;
    height: 30%;
    background: linear-gradient(to bottom, rgba(155, 48, 255, 0.8), rgba(45, 212, 150, 0.4) 60%, transparent);
}

.line-east {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, rgba(155, 48, 255, 0.8), rgba(255, 100, 100, 0.4) 60%, transparent);
}

.line-west {
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(to left, rgba(155, 48, 255, 0.8), rgba(80, 200, 255, 0.4) 60%, transparent);
}

.architecture-cta {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(80, 200, 255, 0.05);
    border-radius: 8px;
    font-style: italic;
}

.architecture-cta p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* CTA Section */
.origenes-cta {
    text-align: center;
    padding: var(--space-xl) 0;
}

.origenes-cta p {
    color: var(--text-mist);
    margin-bottom: var(--space-lg);
}

/* Footer */
.origenes-footer {
    text-align: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(150, 150, 255, 0.1);
}

/* ============================================
   TOOLKIT SECTION — Daily Protocols
   ============================================ */

.toolkit-section {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 50, 0.3) 50%, transparent 100%);
    /* Break out of 800px container */
    max-width: none;
    width: calc(100vw - var(--space-lg) * 2);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.toolkit-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.toolkit-intro .lead-text {
    font-size: 1.2rem;
    color: var(--text-mist);
    font-style: italic;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
}

/* Protocol Cards */
.protocol-card {
    background: linear-gradient(180deg, rgba(25, 25, 40, 0.9) 0%, rgba(15, 15, 25, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.protocol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.protocol-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.protocol-card:hover::before {
    opacity: 1;
}

/* Element-specific theming */
.protocol-thelema::before {
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.protocol-thelema:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

.protocol-babalon::before {
    background: linear-gradient(90deg, transparent, #c41e3a, transparent);
}

.protocol-babalon:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(196, 30, 58, 0.15);
}

.protocol-chaos::before {
    background: linear-gradient(90deg, transparent, #9b30ff, transparent);
}

.protocol-chaos:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(155, 48, 255, 0.15);
}

.protocol-maat::before {
    background: linear-gradient(90deg, transparent, #2db4a0, transparent);
}

.protocol-maat:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(45, 180, 160, 0.15);
}

.protocol-resh::before {
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
}

.protocol-resh:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 140, 0, 0.2);
}

/* Protocol Card Header */
.protocol-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.protocol-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.3;
}

.protocol-time {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-whisper);
}

/* Protocol Title & Element */
.protocol-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-pure);
    margin-bottom: var(--space-xs);
}

.protocol-element {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-mist);
    margin-bottom: var(--space-md);
}

/* Protocol Action Content */
.protocol-action {
    font-size: 1rem;
    line-height: 1.8;
}

.protocol-action p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.protocol-action .action-question {
    color: var(--bio-cyan);
    font-weight: 500;
    font-size: 1.05rem;
}

.protocol-action .action-examples {
    color: var(--text-mist);
    font-style: italic;
}

.protocol-action .old-belief {
    color: var(--text-whisper);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 100, 100, 0.5);
}

.protocol-action strong {
    color: var(--accent-gold);
}

/* Toolkit Closing */
.toolkit-closing {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.toolkit-closing .closing-mantra {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.toolkit-closing .closing-truth {
    color: var(--text-mist);
    font-style: italic;
}

.toolkit-closing em {
    color: var(--text-pure);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .back-link {
        position: static;
        display: inline-block;
        margin: var(--space-md);
    }

    .origenes-content {
        padding: var(--space-lg) var(--space-sm);
    }

    .arquetipos-grid {
        grid-template-columns: 1fr;
    }

    .protocols-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .protocol-card {
        padding: var(--space-md);
    }

    .protocol-number {
        font-size: 2rem;
    }

    .protocol-title {
        font-size: 1.2rem;
    }
}