@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(124, 58, 237, 0.12);
    --border-hover: rgba(6, 182, 212, 0.4);
    
    --color-violet: #6d28d9;
    --color-teal: #0891b2;
    --color-green: #059669;
    --color-pink: #db2777;
    
    --text-primary: #111827;
    --text-muted: #4b5563;
    --text-dark: #111827;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    
    --glow-violet: 0 0 20px rgba(124, 58, 237, 0.1);
    --glow-teal: 0 0 20px rgba(6, 182, 212, 0.1);
    --glow-green: 0 0 25px rgba(16, 185, 129, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background elements */
.radial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f9fafb 100%);
}

#hero-scroll-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.aurora-glow-1 {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -8;
}

.aurora-glow-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-weight: 300;
}

.text-gradient-violet {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-rainbow {
    background: linear-gradient(135deg, #22d3ee 0%, #7c3aed 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

header.scrolled {
    height: 68px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 100% !important;
    width: 100%;
    padding: 0 3.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-teal);
    border-radius: 50%;
    box-shadow: var(--glow-teal);
    animation: pulse-glow 2s infinite alternate;
}

.logo-img-nav {
    height: 48px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

header.scrolled .logo-img-nav {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-jakarta);
    white-space: nowrap;
    transition: color 0.2s ease;
    padding: 0.25rem 0.25rem;
}

nav a:hover {
    color: #111827;
}

/* Language Switcher Component */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.lang-btn {
    border: none;
    background: transparent;
    color: #64748b;
    font-family: var(--font-jakarta);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}

.lang-btn:hover {
    color: #111827;
}

.lang-btn.active {
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lang-switcher-footer {
    display: inline-flex;
    margin-top: 1rem;
}

/* Glassmorphism Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(17, 24, 39, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-primary:hover {
    background: rgba(17, 24, 39, 0.05);
    border-color: rgba(17, 24, 39, 0.25);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-teal);
    border: 1px solid var(--color-teal);
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: var(--glow-teal);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

/* Hero Section */
#hero {
    position: relative;
    height: 230vh;
    margin: 0;
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 10;
}

.hero-title-container {
    text-align: left;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4.5rem;
    padding-top: 65px;
}

.hero-initial-logo-massive {
    font-family: "Yu Gothic UI Light", "Yu Gothic UI", "Segoe UI", sans-serif;
    font-size: 16.5vw;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.12); /* Gris claro con opacidad como la imagen */
    letter-spacing: -0.035em;
    position: absolute;
    bottom: calc(8% - 70px);
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
    line-height: 1;
    pointer-events: none;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: opacity 0.05s ease-out, visibility 0.05s ease-out;
}

.hero-title-new {
    font-family: var(--font-jakarta);
    font-size: 3.4rem;
    line-height: 1.25;
    font-weight: 300; /* DengXian Light style */
    text-align: left;
    margin-left: 0;
    max-width: 660px;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-spacer-container {
    height: 450px;
    pointer-events: none;
}

.hero-description-left {
    max-width: 750px;
    text-align: left;
    margin: 0.25rem 0 0 0;
    position: relative;
    left: 0;
    transform: translateY(15px);
    transition: opacity 0.05s ease-out, transform 0.05s ease-out;
}


.hero-decision-animator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-family: var(--font-heading);
}

.animator-label {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-primary);
    white-space: nowrap;
}

.animator-word {
    font-family: var(--font-jakarta);
    font-size: 2.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

/* Animation classes applied dynamically via JS */
.animator-word.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.animator-word.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-proposal-summary {
    margin-top: 3.5rem;
    border-top: none;
    padding-top: 0;
}

.summary-title {
    font-family: var(--font-jakarta);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.summary-body {
    font-family: var(--font-jakarta);
    font-size: 1.3rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.brand-bold {
    font-family: var(--font-jakarta);
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 1200px) {
    .hero-title-new {
        margin-left: 0;
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-container-wide {
        padding: 0 2rem;
    }
    .hero-layout-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title-container {
        min-height: auto;
        padding-left: 0;
    }
    .hero-initial-logo-massive {
        font-size: 17vw;
        font-weight: 700;
        bottom: calc(12% - 70px);
        letter-spacing: -0.02em;
    }
    .hero-title-new {
        text-align: center;
        margin: 0 auto 1.5rem auto;
        font-size: 2.8rem;
    }
    .hero-description-left {
        text-align: center;
        max-width: 90%;
        margin: 2rem auto 0 auto;
    }
    .desc-quote {
        font-size: 1.2rem;
        text-align: center;
    }
    .desc-footer {
        font-size: 1.0rem;
        white-space: normal;
        text-align: center;
    }
}

/* NIBC Section */
.nibc-section {
    padding: 8rem 0;
    position: relative;
}

.nibc-header {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.nibc-header .uppercase-label {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-violet), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nibc-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.nibc-text-card {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.nibc-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.nibc-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.nibc-card-text:last-child {
    margin-bottom: 0;
}

.nibc-card-text.font-lg {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    border-left: 3px solid currentColor;
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--color-teal), var(--color-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-violet {
    background: linear-gradient(135deg, var(--color-violet), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Vista 2: El Mecanismo Section */
.mecanismo-section {
    position: relative;
    height: 300vh; /* Permite scroll suficiente para ver la esfera rodar y hacer scroll-freeze */
    margin: 0;
    padding: 0;
}

.mecanismo-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 2rem 40px 2rem;
    box-sizing: border-box;
    z-index: 10;
    overflow: hidden;
}

.mecanismo-header-sticky {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.teoria-pinned-title {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-jakarta);
    color: var(--text-primary);
    display: inline-block;
}

.mecanismo-interactive-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr; /* Ajustado para acercar el texto a la esfera y dar más ancho */
    width: 100%;
    max-width: 1600px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

.mecanismo-left-space {
    pointer-events: none;
}

.mecanismo-right-panel {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas paralelas */
    gap: 3rem;
    opacity: 0;
    transform: translateX(150px);
    /* transition removida para actualizar instantáneamente con el scroll sin lag vertical */
    width: 100%;
    max-width: 960px;
    justify-self: start; /* Anclado al inicio del espacio derecho para estar cerca de la esfera */
}

.concepto-clean-block {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: left;
}

.concepto-title-clean {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    font-family: var(--font-jakarta);
    letter-spacing: 0.03em;
}

.concepto-title-clean.color-violet {
    color: var(--color-violet);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.concepto-title-clean.color-teal {
    color: var(--color-teal);
    text-shadow: 0 0 20px rgba(13, 148, 136, 0.15);
}

.concepto-text-clean {
    font-family: var(--font-jakarta);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.concepto-subtext-clean {
    font-family: var(--font-jakarta);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.concepto-list-clean {
    font-family: var(--font-jakarta);
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.concepto-list-clean li {
    line-height: 1.4;
    color: var(--text-primary);
}

.concepto-list-clean li::marker {
    color: var(--color-violet);
}

.concepto-note-clean {
    font-family: var(--font-jakarta);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    margin: 0;
}

.concepto-highlight-clean {
    font-family: var(--font-jakarta);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    border-left: 3px solid var(--color-teal);
    padding-left: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Responsividad para móviles y tablets */
@media (max-width: 992px) {
    .mecanismo-interactive-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .mecanismo-right-panel {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        gap: 2.5rem;
    }
    
    .concepto-title-clean {
        font-size: 1.6rem;
    }
    
    .concepto-text-clean {
        font-size: 1.05rem;
    }

    .concepto-subtext-clean {
        font-size: 0.95rem;
    }

    .concepto-list-clean {
        font-size: 0.95rem;
    }

    .concepto-highlight-clean {
        font-size: 0.95rem;
    }
}

/* Experiment Section */
.exp-grid {
    display: grid;
    grid-template-columns: 0.90fr 1.10fr;
    gap: 4rem;
    align-items: center;
}

.exp-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.exp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h4 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
}

.exp-map {
    position: relative;
    height: 400px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg {
    width: 85%;
    height: 85%;
    opacity: 0.2;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-teal);
    border-radius: 50%;
    cursor: pointer;
}

.map-marker::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-teal);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.marker-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5,5,10,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-marker:hover .marker-label {
    opacity: 1;
}

/* Experimental Timeline (Vista 3) */
.timeline-wrapper {
    margin-top: 8rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-header-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.timeline-header-block .uppercase-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.timeline-header-block h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.timeline-container {
    position: relative;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

/* Horizontal Connector Line */
.timeline-line {
    position: absolute;
    top: 52px; /* aligns with the center of the badges */
    left: 10%;
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress {
    width: 0%; /* Animated on scroll via JS */
    height: 100%;
    background: linear-gradient(90deg, var(--color-violet), var(--color-teal));
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.timeline-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered load delays (if JS adds the visible class) */
.timeline-card:nth-child(1) { transition-delay: 0.1s; }
.timeline-card:nth-child(2) { transition-delay: 0.3s; }
.timeline-card:nth-child(3) { transition-delay: 0.5s; }

.timeline-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 42px;
}

.badge-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 3;
}

.badge-before .badge-number {
    background: #1e1b4b;
    border: 2px solid var(--color-violet);
    color: var(--color-violet);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.badge-intervention .badge-number {
    background: #0f172a;
    border: 2px solid var(--color-teal);
    color: var(--color-teal);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.badge-after .badge-number {
    background: #1f1228;
    border: 2px solid var(--color-pink);
    color: var(--color-pink);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.badge-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.timeline-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.timeline-card-tag {
    align-self: flex-start;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
}

.timeline-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-secondary-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.timeline-secondary-link:hover {
    color: var(--text-primary);
}

}

/* Scope Section (Vista 4: El Alcance de la Validación) */
.alcance-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.alcance-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alcance-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem auto;
}

.alcance-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    display: inline-block;
}

.alcance-header-centered h3 {
    font-size: 1.5rem;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.alcance-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.alcance-vision-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.alcance-lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #111827;
    font-weight: 500;
    margin: 0;
}

.alcance-body-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.alcance-card-column {
    display: flex;
    justify-content: flex-end;
}

.validation-highlight-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 440px;
    width: 100%;
}

.validation-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.validation-card-tag {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.validation-highlight-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #111827;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.validation-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

.validation-action-block {
    width: 100%;
}

@media (max-width: 991px) {
    .alcance-grid-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .alcance-card-column {
        justify-content: center;
    }
    .validation-highlight-card {
        max-width: 100%;
    }
}

/* Vista 5: Dirección Científica · Carlos Caripe */
.trayectoria-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.trayectoria-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trayectoria-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem auto;
}

.trayectoria-badge {
    font-family: var(--font-jakarta);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.trayectoria-header-centered h2 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    font-family: var(--font-jakarta);
    display: inline-block;
}

.trayectoria-role {
    font-size: 1.35rem;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-jakarta);
    margin-top: 0.5rem;
}

.trayectoria-grid-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: flex-start;
}

.trayectoria-content-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trayectoria-lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #111827;
    font-weight: 500;
    font-family: var(--font-jakarta);
    margin: 0;
}

.trayectoria-academic-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.academic-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.academic-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.academic-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.dot-violet { background: var(--color-violet); box-shadow: 0 0 8px rgba(109, 40, 217, 0.4); }
.dot-teal { background: var(--color-teal); box-shadow: 0 0 8px rgba(8, 145, 178, 0.4); }
.dot-pink { background: var(--color-pink); box-shadow: 0 0 8px rgba(219, 39, 119, 0.4); }

.academic-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--font-jakarta);
    margin-bottom: 0.2rem;
}

.academic-info p {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #4b5563;
    margin: 0;
    font-family: var(--font-jakarta);
}

.trayectoria-acervo-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trayectoria-block-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--font-jakarta);
    margin: 0;
}

.trayectoria-body-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #4b5563;
    font-family: var(--font-jakarta);
    margin: 0;
}

.trayectoria-card-column {
    display: flex;
    justify-content: flex-end;
}

.trayectoria-highlight-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.trayectoria-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.trayectoria-card-tag {
    font-family: var(--font-jakarta);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.trayectoria-continuity-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #374151;
    font-family: var(--font-jakarta);
    margin-bottom: 1.5rem;
}

.trayectoria-question-box {
    background: #f8fafc;
    border-left: 3px solid var(--color-teal);
    padding: 1.25rem 1.5rem;
    border-radius: 0 16px 16px 0;
    margin-bottom: 1.5rem;
}

.question-box-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-jakarta);
    display: block;
    margin-bottom: 0.5rem;
}

.trayectoria-question-quote {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #0f172a;
    font-weight: 600;
    font-family: var(--font-jakarta);
    font-style: italic;
    margin: 0;
}

.trayectoria-subtext {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4b5563;
    font-family: var(--font-jakarta);
    margin-bottom: 1.5rem;
}

.trayectoria-final-note {
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
    margin-top: 1rem;
}

.trayectoria-manifesto {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: var(--font-jakarta);
    margin: 0;
}

@media (max-width: 991px) {
    .trayectoria-grid-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .trayectoria-card-column {
        justify-content: center;
    }
    .trayectoria-header-centered h2 {
        font-size: 2.4rem;
    }
    .trayectoria-role {
        font-size: 1.15rem;
    }
    .trayectoria-highlight-card {
        padding: 2rem 1.5rem;
    }
}

/* Vista 3: La Comprobación Experimental */
#comprobacion {
    padding: 8rem 0;
    background: linear-gradient(180deg, #e5e7eb 0%, #f3f4f6 50%, #ffffff 100%);
    position: relative;
}

.comprobacion-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comprobacion-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.comprobacion-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    display: inline-block;
}

.comprobacion-lead {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.5;
}

.comprobacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.comprobacion-card {
    padding: 3rem 2rem 2.5rem 2rem;
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.comprobacion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.comprobacion-card.highlighted-step {
    border: 1px solid rgba(124, 58, 237, 0.15);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.05);
}

.comprobacion-card.highlighted-step:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.12);
}

.step-badge {
    position: absolute;
    top: -24px;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.color-blue-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.color-violet-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.color-teal-badge {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

.card-step-header {
    margin-bottom: 1.5rem;
}

.card-step-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.step-sublabel {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.05em;
}

.comprobacion-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Comparison Box */
.comprobacion-comparison-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.comparison-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-indicator .indicator-arrow {
    font-size: 1.75rem;
    color: var(--color-violet);
    font-weight: 700;
}

.comprobacion-comparison-box p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
}



@media (max-width: 991px) {
    .comprobacion-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .comprobacion-card {
        padding-top: 3.5rem;
    }
    .comprobacion-comparison-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1rem;
    }

}




/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: 100%;
    max-width: 500px;
    background: #0d0c1e;
    border: 1px solid var(--color-violet);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), var(--glow-violet);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.form-control {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-teal);
    background: rgba(6, 182, 212, 0.05);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Success State in Modal */
.modal-success {
    display: none;
    text-align: center;
    animation: fade-in 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--color-green);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: var(--glow-green);
    position: relative;
}

.modal-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Confetti effect */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confetti-fall 2s linear infinite;
    pointer-events: none;
    top: -10px;
}

/* Footer */
footer {
    background: #020205;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    text-align: right;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.8);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(350px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Web Design */
@media (max-width: 992px) {
    header .container {
        padding: 0 1.5rem !important;
    }
    
    nav {
        gap: 0.85rem;
    }
    
    nav a {
        font-size: 0.8rem;
    }
    
    .hero-grid, .donation-grid, .credibility-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .mecanismo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .concepto-card {
        padding: 3rem 2rem;
    }
    
    .mecanismo-flow-path {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .flow-quote-text {
        font-size: 1.5rem;
    }
    
    .nibc-two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .milestones-line, .milestones-progress {
        display: none;
    }
    
    section {
        padding: 5rem 0;
    }

    .timeline-line {
        display: none;
    }
    
    .timeline-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-card {
        padding: 2rem;
        transform: translateY(15px);
    }
    
    .timeline-actions {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .alcance-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .alcance-cta-panel {
        position: static;
    }
    
    .quote-callout-card {
        padding: 2.5rem 1.5rem;
    }
    
    .dossier-quote-text {
        font-size: 1.5rem;
    }
    .footer-links {
        text-align: left;
    }
    .footer-links ul {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nibc-two-columns {
        grid-template-columns: 1fr;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .sim-card {
        padding: 2rem 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-widget {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Vista 3: Revelaciones Section (Muro Vertical 3D)
   ========================================== */
.revelaciones-section {
    position: relative;
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%); /* Fondo claro con degradado moderno */
    color: var(--text-primary);
    overflow: hidden;
    padding: 0;
    min-height: 200vh; /* Duplicado a 2 pantallas */
    z-index: 10;
}

/* Background Glowing Auroras */
.revelaciones-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.revelaciones-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, rgba(13, 148, 136, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.revelaciones-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}

.revelaciones-title {
    font-size: 3.2rem;
    font-family: var(--font-jakarta);
    font-weight: 800;
    margin-top: 0.75rem;
    margin-bottom: 0px;
    letter-spacing: -0.02em;
    color: #374151;
}

.revelaciones-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 1rem auto 0 auto;
    line-height: 1.6;
}

/* Container and Flat Column Road */
.revelaciones-container-sticky {
    width: 100%;
    height: 200vh; /* Ampliado a 200vh para ocupar dos pantallas */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden; /* Recorta el desborde vertical a nivel de sección */
}

/* Fades globales de ancho completo para la sección entera en lugar de canales individuales */
.revelaciones-container-sticky::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px; /* Altura fija de fundido superior */
    background: linear-gradient(to bottom, #f9fafb 20%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.revelaciones-container-sticky::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px; /* Altura fija de fundido inferior */
    background: linear-gradient(to top, #e5e7eb 20%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.revelaciones-perspective-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.revelaciones-grid-vertical {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem; /* Espaciado entre columnas original y amplio */
    width: 90%;
    height: 100%;
    overflow: visible; /* Permite que las sombras y hover fluyan libremente entre columnas */
    position: relative;
    padding: 0;
}

/* Vertical Columns and Marquee */
.revelaciones-column {
    height: 100%;
    overflow: visible; /* Removido el recorte para que las sombras floten sin límites */
    position: relative;
    padding: 0; /* Removido padding para que no parezca un canal limitado */
}

.revelaciones-column-inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 2rem 0;
}

/* Marquee Scroll Animations */
.revelaciones-column-inner.animate-up {
    animation: scrollUpMarquee 100s linear infinite;
}

.revelaciones-column-inner.animate-down {
    animation: scrollDownMarquee 100s linear infinite;
}

/* Pause scroll on hover */
.revelaciones-column:hover .revelaciones-column-inner {
    animation-play-state: paused;
}

@keyframes scrollUpMarquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDownMarquee {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Card Styling */
.revelacion-card {
    position: relative;
    width: 100%;
    height: 290px; /* Altura de la tarjeta */
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Borde claro en lugar de negro */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02); /* Sombra suave para tarjetas claras */
}

.revelacion-card:hover {
    background: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 3px 8px rgba(0, 0, 0, 0.04); /* Sombra hover suave */
}

.revelacion-card-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* El video corre por detrás en toda la tarjeta para evitar cortes abruptos */
    overflow: hidden;
    border-radius: 16px;
    background: #f9fafb; /* Fondo claro en lugar de negro */
}

.revelacion-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1; /* Nítido y sin opacidad */
}

.revelacion-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 105px; /* Altura para un desvanecimiento suave y progresivo */
    padding: 1.5rem 1.25rem 1rem 1.25rem;
    box-sizing: border-box;
    z-index: 3;
    text-align: center;
    /* Degradado de disolución: gris sólido abajo para las letras, y se disuelve suavemente a transparente arriba */
    background: linear-gradient(to top, #f3f4f6 0%, #f3f4f6 40%, rgba(243, 244, 246, 0.85) 65%, rgba(243, 244, 246, 0) 100%);
    display: flex;
    align-items: flex-end; /* Alineación al pie para legibilidad en la zona gris sólida */
    justify-content: center;
    border-radius: 0 0 16px 16px; /* Bordes redondeados inferiores para sellar cualquier fuga de subpíxeles */
}

/* Glowing Neon Card Borders based on category */
.revelacion-card.nano:hover {
    border-color: var(--color-pink);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 20px rgba(236, 72, 153, 0.25), inset 0 0 10px rgba(236, 72, 153, 0.05);
}
.revelacion-card.info:hover {
    border-color: var(--color-blue);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 20px rgba(59, 130, 246, 0.25), inset 0 0 10px rgba(59, 130, 246, 0.05);
}
.revelacion-card.bio:hover {
    border-color: var(--color-teal);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 20px rgba(13, 148, 136, 0.25), inset 0 0 10px rgba(13, 148, 136, 0.05);
}
.revelacion-card.cogno:hover {
    border-color: var(--color-violet);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 20px rgba(124, 58, 237, 0.25), inset 0 0 10px rgba(124, 58, 237, 0.05);
}
.revelacion-card.quant:hover {
    border-color: var(--color-amber);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 20px rgba(245, 158, 11, 0.25), inset 0 0 10px rgba(245, 158, 11, 0.05);
}

/* Card Title Styling */
.revelacion-card h4 {
    font-family: var(--font-jakarta);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #4b5563; /* Letras en gris en vez de negro */
    letter-spacing: -0.01em;
    text-align: center; /* Centrado horizontal para títulos de una o dos líneas */
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.revelacion-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

/* Category Label Colors */
.cat-nano { color: var(--color-pink); }
.cat-info { color: var(--color-blue); }
.cat-bio { color: var(--color-teal); }
.cat-cogno { color: var(--color-violet); }
.cat-quant { color: var(--color-amber); }

/* Glassmorphic Overlay Modal */
.revelacion-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 5, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.revelacion-modal.active {
    display: flex;
    opacity: 1;
}

.revelacion-modal .modal-content {
    width: 90%;
    max-width: 520px;
    padding: 2.5rem;
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.revelacion-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    font-size: 2.2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.close-modal:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.modal-header-info {
    margin-bottom: 1.25rem;
}

.modal-header-info h3 {
    font-size: 1.8rem;
    font-family: var(--font-jakarta);
    font-weight: 800;
    color: #374151;
    margin: 0.75rem 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.modal-body-desc p {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.market-projection-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-size: 1.05rem;
}

.market-projection-box strong {
    color: var(--text-primary);
}

.sources-box h5 {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.sources-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.source-link-tag {
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(124, 58, 237, 0.08);
    color: var(--color-violet);
    border: 1px solid rgba(124, 58, 237, 0.18);
    padding: 0.4rem 1rem;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.source-link-tag:hover {
    background: var(--color-violet);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

/* Revelaciones Modal Base Responsive */
@media (max-width: 992px) {
    .revelacion-modal .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-header-info h3 {
        font-size: 1.6rem;
    }
}

/* ==========================================
   Executive Dossier Magazine Reader Styles
   ========================================== */
.magazine-modal-card {
    max-width: 1050px !important;
    width: 95% !important;
    height: 85vh !important;
    max-height: 800px !important;
    background: #f9fafb !important;
    padding: 2.5rem !important;
    border-radius: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35) !important;
    color: #1f2937 !important;
}

.magazine-reader {
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.magazine-page {
    display: none;
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
}

.magazine-page.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Cover Page Layout */
.magazine-cover-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100%;
    width: 100%;
}

.cover-info {
    padding: 4rem 3.5rem;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid #1e293b;
}

.cover-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cover-title {
    font-size: 4rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.cover-divider {
    width: 80px;
    height: 4px;
    background: var(--color-teal);
    margin-bottom: 2rem;
}

.cover-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.cover-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: auto;
}

.cover-issue {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
}

.cover-image-container {
    height: 100%;
    background: #020205;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #020205;
}

/* Page Headers */
.page-header-magazine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 5rem 1.1rem 2.5rem;
    border-bottom: 1px solid #f3f4f6;
    background: #f9fafb;
    font-family: var(--font-heading);
}

.magazine-section-title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
}

.magazine-page-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
}

/* Standard Multi-Column Page Layouts */
.magazine-two-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    flex: 1 1 auto;
    overflow: hidden;
}

.magazine-one-column {
    flex: 1 1 auto;
    padding: 3rem 4rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.magazine-col {
    padding: 2.5rem 3rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.magazine-col:first-child {
    border-right: 1px solid #f3f4f6;
}

/* Page Graphics & Illustration Columns */
.col-image-container {
    padding: 0 !important;
    background: #020205;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magazine-full-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.col-centered-bg {
    background: #f8fafc;
    justify-content: center;
    align-items: center;
    padding: 3rem !important;
}

.col-highlight-grey {
    background: #f8fafc;
    padding: 3rem !important;
}

/* Editorial Typography */
.magazine-heading-large {
    font-size: 1.9rem;
    line-height: 1.35;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.magazine-heading-medium {
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.magazine-text-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.magazine-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 1rem;
}

.magazine-text-small {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.magazine-section-badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-violet);
    margin-bottom: 0.75rem;
    display: inline-block;
}

/* Component Boxes & Lists */
.magazine-alert-box {
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--color-violet);
    padding: 1.25rem;
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1e1b4b;
    margin-top: 1rem;
}

.concept-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.tech-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-item-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.2rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    cursor: default;
    user-select: text;
    pointer-events: none;
    box-shadow: none;
}

.tech-item-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.metrics-list-magazine {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.metric-item-mag h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.metric-item-mag p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

/* Diagram styling in Editorial style */
.diagram-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.magazine-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.diagram-step {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.diagram-step .step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-teal);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-arrow {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1;
}

.exp-steps-magazine {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exp-step-mag {
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #475569;
}

.gen-z-callout-magazine {
    margin-top: 1.5rem;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #334155;
}

/* Stat Badges / Metrics Row */
.magazine-stat-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.stat-pill-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-pill-num {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-jakarta);
    line-height: 1.2;
}

.stat-pill-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-top: 0.35rem;
    line-height: 1.3;
}

/* Editorial Tables in Magazine */
.magazine-table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    margin: 1rem 0;
}

.magazine-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
}

.magazine-table thead tr {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.magazine-table th {
    padding: 0.75rem 1rem;
    font-weight: 700;
    color: #334155;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.magazine-table td {
    padding: 0.65rem 1rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.magazine-table tbody tr:last-child td {
    border-bottom: none;
}

.magazine-table tbody tr:hover {
    background: #f8fafc;
}

.table-highlight-row {
    background: rgba(13, 148, 136, 0.06) !important;
    font-weight: 700;
}

.table-highlight-row td {
    color: #0f766e !important;
}

.compact-table th {
    padding: 0.5rem 0.65rem;
    font-size: 0.72rem;
    white-space: nowrap;
}

.compact-table td {
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.magazine-footnote {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Funding Avenue Grid (Vía 1 & Vía 2) */
.funding-avenue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-top: 0.75rem;
}

.funding-avenue-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}

.funding-avenue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.funding-avenue-card.via-1 {
    border-top: 4px solid var(--color-teal);
}

.funding-avenue-card.via-2 {
    border-top: 4px solid var(--color-violet);
}

.funding-avenue-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin: 0.25rem 0 0.5rem 0;
    font-family: var(--font-jakarta);
}

.funding-avenue-rate {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.funding-synthesis-box {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    font-size: 0.85rem;
    color: #475569;
    text-align: center;
    line-height: 1.5;
}

/* Page 7: Final Page & Philanthropic Callout */
.magazine-final-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.magazine-blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    line-height: 1.4;
    font-style: italic;
    color: #475569;
    border-left: 3px solid var(--color-teal);
    padding-left: 1.5rem;
    margin: 2rem 0 0 0;
}

.magazine-philanthropy-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phil-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.phil-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 1.5rem;
}

.phil-deductible {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Checkout View inside Magazine */
.col-info-checkout {
    padding: 3rem !important;
    justify-content: flex-start !important;
}

.donation-amount-selector {
    margin: 1.5rem 0;
}

.donation-amount-selector label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.select-amount-mag {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
    font-weight: 600 !important;
}

.checkout-note {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #64748b;
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.magazine-form-checkout {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem !important;
    background: #f8fafc;
}

.magazine-form-checkout .form-control {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
}

/* Success View inside Magazine */
.page-success-mag {
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 4rem !important;
    text-align: center;
}

.page-success-mag .success-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Bottom Pagination & Navigation */
.magazine-navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
    height: 48px;
}

.btn-mag-nav {
    padding: 0.6rem 1.5rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-mag-nav:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}

.btn-mag-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.mag-page-indicator {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    font-family: var(--font-heading);
}

.col-form-checkout {
    padding: 0 !important;
}

/* Responsive Magazine */
@media (max-width: 1199px) {
    .magazine-modal-card {
        padding: 2rem !important;
        max-width: 950px !important;
    }
    .magazine-col {
        padding: 2rem !important;
    }
    .magazine-one-column {
        padding: 2rem 2.5rem !important;
    }
    .page-header-magazine {
        padding: 1rem 2rem !important;
    }
}

@media (max-width: 991px) {
    .magazine-modal-card {
        height: 90vh !important;
        max-height: none !important;
        padding: 1.5rem !important;
        border-radius: 20px !important;
    }
    
    .magazine-reader {
        height: calc(100% - 50px);
    }
    
    .magazine-two-columns,
    .magazine-cover-layout,
    .magazine-final-wrap {
        grid-template-columns: 1fr;
        flex: 1 1 auto;
        height: auto;
        overflow-y: auto;
    }
    
    .magazine-col {
        height: auto;
        padding: 1.5rem 1.75rem;
    }
    
    .magazine-one-column {
        padding: 1.5rem 1.75rem !important;
    }
    
    .magazine-col:first-child {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .col-form-checkout {
        padding: 0 !important;
    }
    
    .magazine-philanthropy-card {
        margin-top: 1.5rem;
        padding: 1.5rem !important;
    }
    
    .cover-info {
        padding: 2rem 1.75rem;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #1e293b;
    }
    
    .cover-image-container,
    .col-image-container {
        height: 250px;
    }
    
    .cover-title {
        font-size: 2.8rem;
    }
    
    .cover-desc {
        margin-bottom: 2rem !important;
    }
    
    .magazine-heading-large {
        font-size: 1.5rem;
    }
    
    .magazine-heading-medium {
        font-size: 1.3rem;
    }
    
    .col-centered-bg,
    .col-highlight-grey {
        padding: 1.5rem 1.75rem !important;
    }
    
    .magazine-final-wrap {
        gap: 2rem;
    }
    
    .magazine-blockquote {
        font-size: 1.3rem;
    }
    
    .magazine-form-checkout {
        padding: 1.5rem 1.75rem !important;
    }
    
    .funding-avenue-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .magazine-stat-pills {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .magazine-modal-card {
        height: 95vh !important;
        padding: 1rem !important;
        border-radius: 16px !important;
    }
    .magazine-reader {
        height: calc(100% - 48px);
    }
    .magazine-col,
    .magazine-one-column,
    .cover-info,
    .col-centered-bg,
    .col-highlight-grey {
        padding: 1.25rem 1rem !important;
    }
    .page-header-magazine {
        padding: 0.75rem 1rem !important;
    }
    .cover-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    .cover-tagline {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    .cover-desc {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    .cover-image-container,
    .col-image-container {
        height: 160px !important;
    }
    .magazine-heading-large {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    .magazine-heading-medium {
        font-size: 1.15rem !important;
        margin-bottom: 1rem !important;
    }
    .magazine-text-lead {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    .magazine-text,
    .magazine-text-small {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
    }
    .tech-grid-magazine {
        gap: 0.4rem !important;
    }
    .tech-item-badge {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
    .exp-steps-magazine,
    .metrics-list-magazine {
        gap: 0.75rem !important;
    }
    .exp-step-mag,
    .metric-item-mag {
        padding: 0.75rem !important;
    }
    .magazine-blockquote {
        font-size: 1.1rem !important;
        padding-left: 1rem !important;
    }
    .btn-mag-nav {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    .mag-page-indicator {
        font-size: 0.75rem !important;
    }
    .magazine-navigation-bar {
        height: 40px !important;
        padding-top: 0.75rem !important;
    }
}

/* ==========================================================================
   PERFECT CROSS-DEVICE RESPONSIVE SYSTEM (Mobile, Tablets, Laptops & 4K)
   ========================================================================== */

/* 1. Global Transparency for Home & Theory (No white cards) */
.hero-proposal-summary {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    margin-top: 2.5rem;
}

.concepto-clean-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: left;
}

/* 2. Fluid Typography across all devices */
.hero-title-new {
    font-size: clamp(2rem, 4vw, 3.4rem) !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
}

.animator-word {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem) !important;
}

.summary-title {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
}

.summary-body {
    font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
    line-height: 1.65 !important;
    max-width: 680px !important;
}

.teoria-pinned-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
}

.concepto-title-clean {
    font-size: clamp(1.4rem, 2.4vw, 2.1rem) !important;
}

.concepto-text-clean {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem) !important;
    line-height: 1.6 !important;
}

.concepto-subtext-clean {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem) !important;
    line-height: 1.5 !important;
}

/* 3. DESKTOP & LAPTOPS (>= 1025px): FULL 3-COLUMN REVELATIONS & 2-COLUMN HERO/THEORY */
@media (min-width: 1025px) {
    /* Home Split 2 Columns */
    .hero-layout-split {
        display: grid !important;
        grid-template-columns: 1.05fr 0.95fr !important;
        gap: 2rem !important;
        align-items: center !important;
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        max-width: 1600px !important;
        margin: 0 auto !important;
    }
    
    .hero-title-container {
        text-align: left !important;
        align-items: flex-start !important;
        padding-left: 3rem !important;
    }
    
    .hero-title-new,
    .hero-description-left {
        text-align: left !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
    }
    
    .hero-decision-animator {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    /* Theory 2 Parallel Columns */
    .mecanismo-interactive-grid {
        display: grid !important;
        grid-template-columns: 0.8fr 1.2fr !important;
        gap: 2.5rem !important;
        width: 100% !important;
        max-width: 1600px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
        align-items: center !important;
    }
    
    .mecanismo-right-panel {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
        width: 100% !important;
        max-width: 1000px !important;
    }

    /* Revelations 3 Columns */
    .revelaciones-grid-vertical {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 2.5rem !important;
        width: 92% !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
    
    .revelaciones-column {
        display: block !important;
        width: 100% !important;
    }
    
    .revelacion-card {
        height: 290px !important;
        width: 100% !important;
    }
}

/* 4. TABLETS (768px to 1024px): 2 COLUMNS REVELATIONS & BALANCED LAYOUT */
@media (min-width: 768px) and (max-width: 1024px) {
    header .container {
        padding: 0 1.5rem !important;
    }
    
    nav {
        gap: 0.85rem !important;
    }
    
    nav a {
        font-size: 0.8rem !important;
        padding: 0.15rem !important;
    }
    
    .hero-layout-split {
        display: grid !important;
        grid-template-columns: 1.1fr 0.9fr !important;
        gap: 1.5rem !important;
        height: 100vh !important;
    }
    
    .hero-title-container {
        padding-left: 1.5rem !important;
    }

    .mecanismo-interactive-grid {
        grid-template-columns: 0.7fr 1.3fr !important;
        gap: 1.5rem !important;
        padding: 0 1.5rem !important;
    }
    
    .mecanismo-right-panel {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    /* Revelations 2 Columns */
    .revelaciones-grid-vertical {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        width: 95% !important;
        max-width: 900px !important;
        margin: 0 auto !important;
    }
    
    .revelaciones-column.column-left,
    .revelaciones-column.column-center {
        display: block !important;
        width: 100% !important;
    }
    
    .revelaciones-column.column-right {
        display: none !important;
    }
    
    .revelacion-card {
        height: 260px !important;
        width: 100% !important;
    }
}

/* 5. MOBILE PHONES (<= 767px): FULL-WIDTH PERFECTLY CENTERED REVELATIONS STREAM */
@media (max-width: 767px) {
    /* Header */
    header {
        height: 65px !important;
    }
    
    header.scrolled {
        height: 56px !important;
    }
    
    header .container {
        padding: 0 1rem !important;
    }
    
    .logo-img-nav {
        height: 34px !important;
    }
    
    nav a:not(.open-modal-btn) {
        display: none !important;
    }
    
    nav .btn-sm {
        padding: 0.35rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
    
    .lang-switcher {
        margin-left: 0.25rem !important;
        padding: 2px !important;
    }
    
    .lang-btn {
        font-size: 0.7rem !important;
        padding: 3px 7px !important;
    }

    /* Hero Section Mobile */
    #hero {
        height: auto !important;
        min-height: 100dvh !important;
        padding: 80px 0 3rem 0 !important;
    }
    
    .hero-container-wide {
        padding: 0 1.25rem !important;
    }
    
    .hero-layout-split {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .hero-title-container {
        padding: 0 !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-title-new {
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .hero-description-left {
        text-align: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        transform: none !important;
    }
    
    .hero-decision-animator {
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-proposal-summary {
        margin-top: 2rem !important;
        text-align: center !important;
    }

    /* Theory Section Mobile: Stacked COGNOSFERA & PROSPECTOMA, 100% Transparent */
    .mecanismo-section {
        height: auto !important;
        min-height: 100dvh !important;
        padding: 3rem 0 !important;
    }
    
    .mecanismo-sticky-container {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        padding: 0 1.25rem !important;
        overflow: visible !important;
    }
    
    .mecanismo-header-sticky {
        margin-bottom: 2rem !important;
    }
    
    .mecanismo-interactive-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mecanismo-left-space {
        display: none !important;
    }
    
    .mecanismo-right-panel {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.25rem !important;
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
    }
    
    .concepto-clean-block {
        padding: 0 !important;
        text-align: left !important;
    }

    /* Revelations Mobile: Full-Width Centered Stream without Any Empty Spaces */
    .revelaciones-section {
        min-height: 150vh !important;
        padding: 0 !important;
    }
    
    .revelaciones-container-sticky {
        height: 150vh !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .revelaciones-container-sticky::before,
    .revelaciones-container-sticky::after {
        height: 90px !important;
    }
    
    .revelaciones-perspective-container {
        width: 100% !important;
        max-width: 480px !important;
        height: 100% !important;
        margin: 0 auto !important;
        padding: 0 1.25rem !important;
        display: flex !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .revelaciones-grid-vertical {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .revelaciones-column.column-left {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 auto !important;
    }
    
    .revelaciones-column.column-center,
    .revelaciones-column.column-right {
        display: none !important;
    }
    
    .revelaciones-column-inner {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.25rem !important;
        padding: 1.5rem 0 !important;
    }
    
    .revelacion-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 270px !important;
        margin: 0 auto !important;
        border-radius: 18px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
    }
    
    .revelacion-card-video-container {
        height: 175px !important;
        width: 100% !important;
    }
    
    .revelacion-card-content {
        height: 95px !important;
        padding: 0.85rem 1rem !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .revelacion-card-content h4 {
        font-size: 0.92rem !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
        margin: 0 !important;
    }

    /* Comprobación Mobile */
    .comprobacion-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Alcance Mobile */
    .alcance-grid-custom {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Dirección Científica Mobile */
    .trayectoria-grid-two-cols {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Dossier Modal Reader Mobile */
    .magazine-modal-card {
        height: 96vh !important;
        padding: 1rem 0.75rem !important;
        border-radius: 16px !important;
    }
    
    .magazine-two-columns {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .funding-avenue-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .magazine-stat-pills {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
}


/* ==========================================================================
   AUXILIARY MONITORS, SHORT DISPLAYS & VERTICAL RESPONSIVENESS
   ========================================================================== */

/* 1. Fluid Cover & Prevent Clipping on Any Aspect Ratio */
.magazine-modal-card {
    max-width: 1100px !important;
    width: 94% !important;
    height: min(88vh, 760px) !important;
    background: #f9fafb !important;
    padding: clamp(1rem, 2.5vh, 2rem) clamp(1.25rem, 2.5vw, 2.25rem) !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
}

.magazine-reader {
    height: calc(100% - 52px) !important;
    overflow: hidden !important;
}

.magazine-page {
    height: 100% !important;
    overflow: hidden !important;
}

.magazine-cover-layout {
    height: 100% !important;
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
}

.cover-info {
    padding: clamp(1.5rem, 4vh, 3.5rem) clamp(1.5rem, 3vw, 3rem) !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.cover-title {
    font-size: clamp(2.2rem, 5.5vh, 3.8rem) !important;
    line-height: 1.05 !important;
    margin-bottom: clamp(0.75rem, 2vh, 1.5rem) !important;
}

.cover-subtitle {
    font-size: clamp(0.72rem, 1.4vh, 0.85rem) !important;
    letter-spacing: 0.18em !important;
    margin-bottom: clamp(0.5rem, 1.5vh, 1rem) !important;
}

.cover-divider {
    height: 3px !important;
    width: clamp(50px, 6vw, 80px) !important;
    margin-bottom: clamp(0.75rem, 2vh, 1.5rem) !important;
}

.cover-tagline {
    font-size: clamp(1.15rem, 2.8vh, 1.65rem) !important;
    line-height: 1.25 !important;
    margin-bottom: clamp(0.6rem, 1.5vh, 1.25rem) !important;
}

.cover-desc {
    font-size: clamp(0.85rem, 1.8vh, 0.98rem) !important;
    line-height: 1.5 !important;
    margin-bottom: clamp(0.6rem, 2vh, 1.25rem) !important;
}

.cover-issue {
    font-size: clamp(0.7rem, 1.3vh, 0.78rem) !important;
    padding-top: clamp(0.6rem, 1.5vh, 1.2rem) !important;
}

.magazine-col {
    padding: clamp(1.25rem, 3vh, 2.5rem) clamp(1.25rem, 2.5vw, 2.5rem) !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
}

.magazine-one-column {
    padding: clamp(1.25rem, 3vh, 2.5rem) clamp(1.5rem, 3vw, 3.5rem) !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
}

.page-header-magazine {
    padding: clamp(0.6rem, 1.5vh, 1rem) 4.5rem clamp(0.6rem, 1.5vh, 1rem) clamp(1.25rem, 2vw, 2rem) !important;
}

.magazine-heading-large {
    font-size: clamp(1.3rem, 2.8vh, 1.8rem) !important;
    margin-bottom: clamp(0.5rem, 1.2vh, 1.2rem) !important;
}

.magazine-heading-medium {
    font-size: clamp(1.15rem, 2.4vh, 1.5rem) !important;
    margin-bottom: clamp(0.5rem, 1.2vh, 1rem) !important;
}

.magazine-text-lead {
    font-size: clamp(0.92rem, 1.8vh, 1.05rem) !important;
    margin-bottom: clamp(0.5rem, 1.2vh, 1rem) !important;
    line-height: 1.55 !important;
}

.magazine-text,
.magazine-text-small {
    font-size: clamp(0.82rem, 1.6vh, 0.92rem) !important;
    line-height: 1.55 !important;
}

/* 2. SPECIFIC RULE FOR SHORT MONITORS (<= 800px viewport height) */
@media (max-height: 800px) {
    .magazine-modal-card {
        height: 94vh !important;
        max-height: 94vh !important;
        padding: 0.85rem 1.25rem !important;
        border-radius: 18px !important;
    }
    
    .magazine-reader {
        height: calc(100% - 44px) !important;
    }
    
    .magazine-navigation-bar {
        height: 40px !important;
        padding-top: 0.35rem !important;
    }
    
    .btn-mag-nav {
        padding: 0.35rem 0.85rem !important;
        font-size: 0.8rem !important;
    }
    
    .cover-info {
        padding: 1.25rem 1.75rem !important;
    }
    
    .cover-title {
        font-size: 2.3rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .cover-tagline {
        font-size: 1.2rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .cover-desc {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
    }
    
    .magazine-col,
    .magazine-one-column {
        padding: 1rem 1.5rem !important;
    }
    
    .col-centered-bg,
    .col-highlight-grey {
        padding: 1rem 1.5rem !important;
    }
    
    .magazine-heading-large {
        font-size: 1.35rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .magazine-text-lead {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .magazine-alert-box {
        padding: 0.75rem 1rem !important;
        margin-top: 0.5rem !important;
        font-size: 0.82rem !important;
    }
    
    .funding-avenue-card {
        padding: 0.85rem 1rem !important;
    }
    
    .compact-table th,
    .compact-table td {
        padding: 0.35rem 0.5rem !important;
        font-size: 0.74rem !important;
    }
}

/* 3. VERY SHORT SCREENS (<= 650px viewport height) */
@media (max-height: 650px) {
    .magazine-modal-card {
        height: 96vh !important;
        max-height: 96vh !important;
        padding: 0.6rem 1rem !important;
    }
    
    .cover-title {
        font-size: 1.9rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .cover-tagline {
        font-size: 1.05rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .cover-desc {
        font-size: 0.8rem !important;
    }
    
    .cover-info {
        padding: 0.85rem 1.25rem !important;
    }
}


/* ==========================================================================
   AESTHETIC MODAL CLOSE BUTTONS (Dossier & Revelaciones)
   ========================================================================== */
.modal-close,
.modal-close-aesthetic {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 100 !important;
    padding: 0 !important;
    outline: none !important;
}

.modal-close:hover,
.modal-close-aesthetic:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1) rotate(90deg) !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4) !important;
}

.close-modal,
.close-modal-aesthetic {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #475569 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 70 !important;
    padding: 0 !important;
    outline: none !important;
}

.close-modal:hover,
.close-modal-aesthetic:hover {
    background: var(--color-violet) !important;
    color: #ffffff !important;
    border-color: var(--color-violet) !important;
    transform: scale(1.08) rotate(90deg) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3) !important;
}
