/* ===== VARIABLES ===== */
:root {
    /* Colors - Paleta sobria azul profundo */
    --color-bg-primary: #0a1628;
    --color-bg-secondary: #0f1f35;
    --color-cyan-50: #ecfeff;
    --color-cyan: #22d3ee;
    --color-cyan-200: #a5f3fc;
    --color-cyan-300: #67e8f9;
    --color-cyan-400: #22d3ee;
    --color-cyan-500: #06b6d4;
    --color-cyan-600: #0891b2;
    --color-cyan-700: #0e7490;
    --color-cyan-900: #164e63;
    --color-blue-200: #bfdbfe;
    --color-blue-300: #93c5fd;
    --color-blue-600: #2563eb;
    --color-green: #4ade80;
    --color-green-400: #4ade80;
    --color-green-500: #22c55e;
    --color-green-600: #16a34a;
    --color-yellow-400: #facc15;
    --color-yellow-500: #eab308;
    --color-red-400: #f87171;
    --color-red-500: #ef4444;
    --color-purple: #c084fc;
    --color-purple-400: #c084fc; /* Neon Purple */
    --color-purple-500: #a855f7; /* Main Purple */
    --color-purple-600: #9333ea; /* Darker Purple */
    --color-white: #ffffff;
    --color-black: #000000;
    
    --color-alert: #ef4444;
    --color-warning: #f59e0b;
    
    
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-padding-y: 6rem;
    --section-padding-y-mobile: 4rem;
    
    /* Transitions */
    --transition-normal: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-primary);
    color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

code, pre {
    font-family: var(--font-mono);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-primary);
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: pulse-slow 4s ease-in-out infinite;
}

.scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 217, 255, 0.1) 2px,
        rgba(0, 217, 255, 0.1) 4px
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Terminal Box */
.terminal-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.2);
    animation: fade-in 0.8s ease-out;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-cyan-300);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.terminal-icon {
    font-size: 1rem;
}

.boot-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-cyan-400);
    white-space: pre-wrap;
    line-height: 1.8;
    min-height: 120px;
}

.cursor-blink {
    display: inline-block;
    width: 0.5rem;
    height: 1rem;
    background: var(--color-cyan-400);
    margin-left: 0.25rem;
    animation: blink 1s step-end infinite;
}

/* Headline Section */
.headline-section {
    text-align: center;
    margin-bottom: 2rem;
    animation: slide-up 0.8s ease-out 0.2s backwards;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 9999px;
    color: var(--color-cyan-300);
    font-size: 0.875rem;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
}

.status-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-green-400);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 300;
    color: var(--color-cyan-200);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: var(--color-blue-200);
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* CTA Form */
.cta-form {
    max-width: 28rem;
    margin: 0 auto;
    animation: slide-up 0.8s ease-out 0.4s backwards;
}

.email-input {
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem;
    font-size: 1rem;
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.5);
    border-radius: 0.375rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.email-input::placeholder {
    color: rgba(6, 182, 212, 0.4);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-cyan-400);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.cta-button {
    /* GEOMETRÍA (El arreglo del espaciado) */
    display: inline-block;
    padding: 1rem 2rem; /* Aire suficiente alrededor del texto */
    margin-top: 1rem;
    
    /* TIPOGRAFÍA */
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none; /* Quita el subrayado feo */
    letter-spacing: 1px;
    
    /* COMPORTAMIENTO */
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    /* Por defecto borde transparente para que los colores específicos lo definan */
    border: 2px solid transparent; 
}

.cta-button:hover {
    background: linear-gradient(to right, #06b6d4, #3b82f6, #06b6d4);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.7);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Botón Secundario (Outline) Mejorado */
.cta-button-outline {
    background: transparent;
    border: 2px solid var(--color-purple-500);
    color: var(--color-purple-400);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.1); /* Brillo sutil */
}

.cta-button-outline:hover {
    background: rgba(168, 85, 247, 0.15);
    color: var(--color-white);
    border-color: var(--color-purple-400);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); /* Brillo m谩s fuerte al hover */
    transform: translateY(-2px);
}

/* ===== BOTÓN HERO (ROJO / EMERGENCIA) ===== */
/* Nota: En tu HTML este botón tiene la clase 'hero-btn-pulse' */

.hero-btn-pulse {
    color: var(--color-white);
    background: rgba(239, 68, 68, 0.15); /* Fondo rojo oscuro transparente */
    border-color: var(--color-red-500);   /* Borde Rojo Neón */
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.hero-btn-pulse:hover {
    background: var(--color-red-500);
    color: #000; /* Texto negro al pasar mouse */
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
    transform: translateY(-2px);
}

/* Botón Hardware (Cyan) */
.hardware-btn {
    background: var(--color-cyan-600);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}
.hardware-btn:hover {
    background: var(--color-cyan-400);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
}

/* Botón Software/Gumroad (Purple) */
.gumroad-btn {
    background: var(--color-purple-500);
    color: var(--color-white);
}
.gumroad-btn:hover {
    background: var(--color-purple-400);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
}

/* Botón Outline (Borde solo) */
.outline-btn {
    background: transparent;
    border-color: var(--color-cyan-600);
    color: var(--color-cyan-400);
}
.outline-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-white);
}

/* ===== BOTÓN DE INSTALACIÓN (SECCIÓN PARCHE) ===== */
.install-btn {
    background: var(--color-cyan-600); /* Fondo Cian Sólido */
    color: #000 !important; /* Texto Negro (Obligatorio para contraste) */
    border: 2px solid var(--color-cyan-400);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); /* Resplandor Cian */
    font-weight: 800; /* Letra extra gruesa */
}

.install-btn:hover {
    background: var(--color-cyan-400); /* Se ilumina más al pasar el mouse */
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.8); /* Resplandor nuclear */
    transform: translateY(-3px) scale(1.02);
}


.form-note {
    font-size: 0.75rem;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
    text-align: center;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--color-green-500);
    color: var(--color-green-400);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--color-red-500);
    color: var(--color-red-400);
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding-y-mobile) 0;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-padding-y) 0;
    }
}

.journey-section {
    background: linear-gradient(to bottom, var(--color-bg-primary), var(--color-bg-secondary));
}

.updates-section {
    background: var(--color-bg-primary);
}

.benefits-section {
    background: linear-gradient(to bottom, var(--color-bg-secondary), var(--color-bg-primary));
}

.laws-section {
    background: var(--color-bg-primary);
}

.testimonials-section {
    background: linear-gradient(to bottom, var(--color-bg-secondary), var(--color-bg-primary));
}

.crisis-section {
    background: var(--color-bg-primary);
}

.philosophy-section {
    background: linear-gradient(to bottom, var(--color-bg-secondary), var(--color-bg-primary));
}

.cta-final-section {
    background: var(--color-bg-primary);
}

.section-content {
    max-width: 48rem;
    margin: 0 auto;
}

.section-content-wide {
    max-width: 45rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
}

.badge-yellow {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--color-yellow-400);
}

.badge-green {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--color-green-400);
}

.badge-cyan {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--color-cyan-400);
}

.badge-red {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-red-400);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-cyan-400);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--color-cyan-200);
    font-family: var(--font-mono);
}

/* Content Box */
.content-box {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.content-text {
    color: var(--color-blue-200);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-weight: 700;
    border: 2px solid rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-cyan-600);
}

.timeline-step.active .timeline-number {
    border-color: var(--color-green-500);
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-green-400);
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-cyan-400);
    margin-bottom: 0.25rem;
}

.timeline-step.active .timeline-title {
    color: var(--color-green-400);
}

.timeline-desc {
    font-size: 0.875rem;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
}

/* Features Row */
.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-cyan-400);
    font-family: var(--font-mono);
}

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

/* Updates List */
.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.update-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.update-card:hover {
    border-color: var(--color-cyan-400);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.update-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-cyan-300);
    font-family: var(--font-mono);
}

.update-date {
    font-size: 0.75rem;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
}

.update-content {
    color: var(--color-blue-200);
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.benefit-card:hover {
    transform: scale(1.05);
    border-color: var(--color-cyan-400);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-status {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-green-400);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-cyan-300);
    font-family: var(--font-mono);
    margin-bottom: 0.75rem;
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-title {
    color: var(--color-cyan-200);
}

.benefit-desc {
    color: var(--color-blue-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Diagram Box */
.diagram-box {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.crisis-box {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.2);
}

.diagram-image {
    width: 100%;
    border-radius: 0.5rem;
}

.diagram-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-cyan-400);
}

.diagram-placeholder p {
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.875rem;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
}

/* Code Snippets */
.code-snippets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.code-snippet {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: var(--transition-normal);
}

.code-snippet:hover {
    border-color: var(--color-cyan-400);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan-400);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.code-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-green-400);
    border-radius: 50%;
}

.code-content {
    font-size: 0.875rem;
    color: var(--color-cyan-300);
    font-family: var(--font-mono);
    overflow-x: auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-cyan-400);
}

.testimonial-text {
    color: var(--color-blue-200);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    color: var(--color-cyan-300);
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-role {
    color: var(--color-cyan-600);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    margin-top: 0.25rem;
}

.testimonial-verified {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-green-400);
}

/* Philosophy Section */
.philosophy-text {
    font-size: 1.125rem;
    color: var(--color-blue-200);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-mono {
    font-family: var(--font-mono);
    color: var(--color-cyan-400);
}

.highlight-green {
    color: var(--color-green-400);
}

.highlight-green-text {
    color: var(--color-green-400);
}

/* Quote Box */
.quote-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    font-family: var(--font-mono);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.quote-content {
    border-left: 4px solid var(--color-cyan-500);
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.quote-text {
    font-size: 1.25rem;
    color: var(--color-cyan-300);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-footer {
    font-size: 0.875rem;
    color: var(--color-cyan-600);
}

.check-icon {
    color: var(--color-green-400);
}

/* CTA Final */
.cta-final-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.cta-final-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-cyan-400);
    margin-bottom: 1rem;
}

.cta-final-subtitle {
    font-size: 1.125rem;
    color: var(--color-cyan-200);
    font-family: var(--font-mono);
    margin-bottom: 2rem;
}

.cta-form-final {
    margin-bottom: 1rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
    margin-top: 0.5rem;
}

.lock-icon {
    font-size: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.6);
}

.footer-content {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-cyan-700);
    font-family: var(--font-mono);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-small {
    font-size: 0.75rem;
    color: var(--color-cyan-900);
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .terminal-box {
        padding: 1rem;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .diagram-box {
        padding: 1rem;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .quote-content {
        padding-left: 1rem;
    }
    
    .quote-text {
        font-size: 1.125rem;
    }
}

/* ===== NUEVOS ESTILOS PARA COPY DE MARKETING ===== */

/* Status Error Badge */
.status-error {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.status-dot-red {
    background: var(--color-red-400);
}

/* Social Proof */
.social-proof {
    text-align: center;
    margin-top: 1rem;
    color: var(--color-cyan-600);
    font-size: 0.875rem;
    font-family: var(--font-mono);
}

.check-icon {
    color: var(--color-green-400);
    margin-right: 0.5rem;
}

/* Bugs List */
.bugs-list {
    margin-bottom: 2rem;
}

.bug-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.bug-item:last-child {
    border-bottom: none;
}

.bug-icon {
    flex-shrink: 0;
    color: var(--color-cyan-400);
    font-weight: bold;
    font-size: 1.25rem;
}

.bug-item p {
    color: var(--color-blue-200);
    line-height: 1.6;
    margin: 0;
}

/* Insight Box */
.insight-box {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--color-cyan-400);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.insight-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-cyan-400);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-text {
    font-size: 1.125rem;
    color: var(--color-white);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--color-cyan-400);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-cyan-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-cyan-400);
    margin-bottom: 0.75rem;
}

.benefit-desc {
    color: var(--color-blue-200);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* CTA Secondary */
.cta-secondary {
    max-width: 28rem;
    margin: 0 auto;
    padding-top: 2rem;
}

/* Features Row */
.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 4px;
    color: var(--color-blue-200);
    font-size: 0.9375rem;
}

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

/* Content Title */
.content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-cyan-400);
    margin-bottom: 1rem;
}

/* Privacy Note */
.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: var(--color-cyan-600);
    font-size: 0.75rem;
    font-family: var(--font-mono);
}

.lock-icon {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
}


/* ===== DIAGNOSIS TERMINAL (Console Log Style) ===== */

.diagnosis-terminal {
    background: #0f172a; /* Azul muy oscuro casi negro */
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    font-family: var(--font-mono);
    overflow: hidden;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Cabecera estilo Mac/Linux */
.terminal-header-bar {
    background: rgba(30, 41, 59, 0.8);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #22c55e; }

.terminal-title-text {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.6);
    font-family: var(--font-sans);
}

/* Contenido del Log */
.console-log-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



/* Indentación para pantallas grandes (look más limpio) */
@media (min-width: 640px) {
    .log-msg { margin-left: 7.5rem; }
}

.system-msg {
    margin-top: 1rem;
    color: var(--color-green-400);
    font-weight: bold;
    animation: blink-cursor 1.5s infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== ANALYSIS RESULT (Insight Final) ===== */
.analysis-result {
    text-align: center;
    background: rgba(6, 182, 212, 0.05);
    border: 1px dashed var(--color-cyan-600);
    border-radius: 6px;
    padding: 1.5rem;
}

.result-header {
    color: var(--color-green-400);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.result-text {
    font-family: var(--font-mono);
    color: var(--color-cyan-200);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== AJUSTES TERMINAL "FULL TEXT" ===== */

.log-entry {
    margin-bottom: 1.5rem; /* Más espacio entre errores */
    border-left: 2px solid rgba(6, 182, 212, 0.1); /* Guía visual sutil */
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.log-entry:hover {
    border-left-color: var(--color-red-500);
    background: rgba(255, 255, 255, 0.02);
}

.log-header-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.log-time { 
    color: var(--color-cyan-600); 
    font-size: 0.8rem; 
    font-weight: 600;
}

.log-code { 
    color: var(--color-red-400); 
    font-weight: 700; 
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Aquí está la clave: El texto vuelve a ser el protagonista */
.log-msg {
    color: var(--color-blue-200); /* Color claro y legible */
    font-size: 1rem; /* Tamaño de lectura cómodo */
    line-height: 1.6; /* Buena altura de línea */
    margin: 0;
    font-weight: 400;
    max-width: 95%;
}

/* En desktop, indentamos ligeramente el texto para mantener la jerarquía */
@media (min-width: 768px) {
    .log-msg {
        margin-left: 3rem; /* Indentación visual */
        color: #e2e8f0; /* Un poco más blanco en desktop para contraste */
    }
}


/* ===== PATCH NOTES STYLE (Solución) ===== */

/* Ajuste sutil a la tarjeta existente para que se vea más técnica */
.patch-card-style {
    background: rgba(6, 182, 212, 0.03) !important; /* Fondo muy sutil cian */
    border: 1px solid rgba(6, 182, 212, 0.2) !important;
    box-shadow: inset 0 0 20px rgba(6, 182, 212, 0.05); /* Brillo interno sutil */
    transition: all 0.3s ease;
}

.patch-card-style:hover {
    background: rgba(6, 182, 212, 0.08) !important;
    border-color: var(--color-cyan-400) !important;
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.3), inset 0 0 20px rgba(6, 182, 212, 0.1);
    transform: translateY(-5px);
}

/* Nueva línea de cabecera tipo código */
.patch-header-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(6, 182, 212, 0.3);
}

.patch-code {
    font-family: var(--font-mono);
    color: var(--color-green-400); /* Verde de "sistema arreglado" */
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Ajuste al título para que no compita con el código */
.benefit-title {
    font-size: 1.1rem !important;
    color: var(--color-white) !important; /* Blanco para destacar sobre el fondo oscuro */
    margin-bottom: 0.5rem !important;
}

/* Ajuste a la descripción para incluir mini-códigos */
.benefit-desc code {
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-cyan-300);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-size: 0.9em;
}

/* ===== PRICING SECTION STYLES ===== */

.pricing-section {
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent 50%);
}

/* System Notice Box */
.system-notice {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid var(--color-yellow-400);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.notice-text {
    color: var(--color-blue-200);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Base Card Styles */
.pricing-card {
    background: rgba(10, 16, 30, 0.9);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* --- Hardware Card (Physical/Solid) --- */
.hardware-card {
    border: 2px solid var(--color-cyan-400);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.hardware-card:hover {
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.2);
}

.badge-hardware {
    background: var(--color-red-500);
    color: white;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.hardware-btn {
    background: linear-gradient(90deg, var(--color-cyan-600), var(--color-cyan-500));
    border-color: var(--color-cyan-400);
}

/* --- Software Card (Digital/Neon) --- */
.software-card {
    border: 2px solid var(--color-purple-500);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15), inset 0 0 20px rgba(168, 85, 247, 0.05);
    background: rgba(10, 16, 30, 0.8); /* Más transparente */
    backdrop-filter: blur(10px);
}

.software-card:hover {
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.3), inset 0 0 30px rgba(168, 85, 247, 0.1);
}

.badge-software {
    background: var(--color-purple-500);
    color: white;
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.software-title {
    color: var(--color-purple-400) !important;
}

.gumroad-btn {
    background: var(--color-purple-500);
    border: 1px solid var(--color-purple-400);
    margin-bottom: 0.5rem;
}

.outline-btn {
    background: transparent;
    border: 1px solid var(--color-purple-400);
    color: var(--color-purple-400);
}

.outline-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    color: white;
}

/* Common Elements */
.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--color-cyan-400);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.card-region {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-blue-300);
    opacity: 0.8;
}

.card-desc {
    color: var(--color-blue-200);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* Feature Blocks (Tabs) */
.feature-block {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border-radius: 0 12px 12px 0; /* La forma de pestaña que te gustó */
    border-left-width: 4px;
    border-left-style: solid;
}

.cyan-block {
    background: rgba(6, 182, 212, 0.1);
    border-left-color: var(--color-cyan-400);
}

.green-block {
    background: rgba(34, 197, 94, 0.1);
    border-left-color: var(--color-green-400);
}

.purple-block {
    background: rgba(139, 92, 246, 0.1);
    border-left-color: var(--color-purple-400);
}

.feature-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-blue-200);
    font-size: 0.85rem;
    line-height: 1.6;
}

.feature-text {
    margin: 0;
    color: var(--color-blue-200);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Pricing Display */
.pricing-display {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--color-blue-300);
    font-size: 0.9rem;
    opacity: 0.7;
}

.price-final {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

.cyan-glow { color: var(--color-cyan-400); text-shadow: 0 0 20px rgba(34, 211, 238, 0.3); }
.purple-glow { color: var(--color-purple-400); text-shadow: 0 0 20px rgba(168, 85, 247, 0.3); }

.price-save {
    color: var(--color-green-400);
    font-size: 0.85rem;
    font-weight: 600;
}

.currency-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-blue-300);
    margin-bottom: 0.5rem;
}

.payment-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--color-blue-300);
    opacity: 0.7;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* ===== MODAL STYLES ===== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px); /* Efecto desenfoque fondo */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal-window {
    width: 100%;
    max-width: 500px;
    background: #0f172a;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-blue-300);
    font-family: var(--font-mono);
    cursor: pointer;
    font-size: 0.8rem;
}

.modal-close-btn:hover { color: var(--color-red-400); }

.modal-header { text-align: center; margin-bottom: 2rem; }

.modal-icon-badge {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: rgba(6, 182, 212, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--color-cyan-400);
}

.purple-badge {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--color-purple-400);
}

.modal-title {
    font-family: var(--font-mono);
    color: var(--color-cyan-400);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.purple-text { color: var(--color-purple-400) !important; }

.modal-subtitle {
    color: var(--color-blue-200);
    font-size: 0.9rem;
}

/* Form Styles */
.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: block;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    height: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 6px;
    padding: 0 1rem;
    color: white;
    font-family: var(--font-mono);
    font-size: 1rem;
}

.purple-input { border-color: rgba(139, 92, 246, 0.3); }

.form-input:focus {
    outline: none;
    border-color: var(--color-cyan-400);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.purple-input:focus {
    border-color: var(--color-purple-400);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Info Box */
.info-box {
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
}

.cyan-box {
    background: rgba(6, 182, 212, 0.1);
    border-left: 3px solid var(--color-cyan-400);
    color: var(--color-blue-200);
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.8rem;
    color: var(--color-blue-300);
}

/* Buttons */
.modal-cta-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s;
}

.modal-cta-btn:hover { transform: scale(1.02); }

.hardware-submit {
    background: var(--color-cyan-600);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.4);
}

.software-submit {
    background: var(--color-purple-500);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.4);
}

.modal-secure-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-blue-300);
    margin-top: 1rem;
    opacity: 0.7;
}

/* Specific Borders */
.hardware-modal-style { border: 2px solid var(--color-cyan-900); }
.software-modal-style { border: 2px solid var(--color-purple-900); }

/* ===== COMPILATION LOG (Estado Proyecto) ===== */
.compile-container {
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-mono);
}

.progress-wrapper { margin-bottom: 2rem; }

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-cyan-600);
    margin-bottom: 0.5rem;
}

.progress-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cyan-600), var(--color-green-400));
    box-shadow: 0 0 10px var(--color-green-400);
}

.phase-log {
    border: 1px solid rgba(6, 182, 212, 0.2);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 1rem;
}

.phase-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    align-items: center;
}

.phase-row:last-child { border-bottom: none; }

.completed { color: var(--color-green-400); opacity: 0.7; }
.active { color: var(--color-white); background: rgba(255, 255, 255, 0.05); padding-left: 0.5rem; padding-right: 0.5rem; border-radius: 4px; border-bottom: none; }
.pending { color: var(--color-blue-300); opacity: 0.4; }

.phase-status { font-weight: bold; width: 40px; }
.phase-date { font-size: 0.75rem; opacity: 0.8; }

.blink { animation: blink 1s infinite; }

/* ===== HUD INTERFACE (App Section) ===== */
.hud-interface {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Grid Pattern de fondo para el HUD */
.hud-interface::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.hud-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-cyan-400);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hud-dot {
    width: 8px; height: 8px; background: var(--color-green-400);
    border-radius: 50%; box-shadow: 0 0 5px var(--color-green-400);
}

.hud-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative; z-index: 2;
}

@media(min-width: 768px) {
    .hud-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hud-title {
    color: var(--color-white); font-size: 1.5rem; margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: 1px;
}

.hud-desc { color: var(--color-blue-200); font-size: 0.95rem; line-height: 1.6; }

.spec-item {
    display: flex; gap: 1rem; margin-bottom: 1.5rem;
    background: rgba(0,0,0,0.4); padding: 1rem; border-radius: 6px;
    border-left: 2px solid var(--color-purple-400);
}

.spec-icon { font-size: 1.5rem; }

.spec-label {
    display: block; font-family: var(--font-mono); color: var(--color-purple-400);
    font-size: 0.8rem; margin-bottom: 0.2rem; font-weight: bold;
}

.spec-val { color: var(--color-blue-200); font-size: 0.9rem; }

/* ===== NEWSLETTER (Secure Shell) ===== */
.cmd-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-mono);
}

.cmd-icon { font-size: 2rem; margin-bottom: 1rem; animation: pulse-slow 3s infinite; }

.cmd-title { color: var(--color-white); margin-bottom: 0.5rem; font-size: 1.2rem; }
.cmd-subtitle { color: var(--color-cyan-700); font-size: 0.85rem; margin-bottom: 2rem; }

.cmd-form {
    text-align: left;
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 6px;
}

.cmd-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.prompt { color: var(--color-green-400); }
.cmd { color: var(--color-yellow-400); }

.cmd-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-cyan-600);
    color: var(--color-white);
    font-family: var(--font-mono);
    font-size: 1rem;
    flex-grow: 1;
    outline: none;
    padding: 0.25rem 0;
}

.cmd-input:focus { border-bottom-color: var(--color-green-400); }

.cmd-submit {
    width: 100%;
    background: #333;
    color: var(--color-green-400);
    border: 1px solid var(--color-green-400);
    padding: 0.75rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.2s;
}

.cmd-submit:hover {
    background: var(--color-green-400);
    color: black;
}

/* ===== SYSTEM FOOTER ===== */

.system-footer {
    background-color: #020408; /* Negro profundo */
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    padding: 4rem 0 2rem;
    margin-top: 0; /* Elimina márgenes previos */
    font-family: var(--font-mono);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr; /* Marca ancha, resto columnas */
    }
}

/* Columna Marca */
.footer-logo {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.version-tag {
    font-size: 0.7rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-cyan-400);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-motto {
    color: var(--color-blue-300);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Columna Enlaces */
.links-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--color-blue-200);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-cyan-400);
    padding-left: 5px; /* Efecto de movimiento sutil */
}

/* Columna Estado */
.status-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .status-col { align-items: flex-end; text-align: right; }
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-green-400);
    background: rgba(34, 197, 94, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.status-led {
    width: 6px;
    height: 6px;
    background: var(--color-green-400);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-green-400);
    animation: blink 2s infinite;
}

.server-loc {
    font-size: 0.7rem;
    color: var(--color-cyan-900);
}

/* Bottom Copyright */
.footer-bottom {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-blue-300);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.exit-code {
    font-family: var(--font-mono);
    color: var(--color-cyan-700);
}

/* ===== HERO: SYSTEM FAILURE THEME ===== */

.hero-section {
    position: relative;
    min-height: 100vh; /* Pantalla completa */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050a10;
    overflow: hidden;
    padding-top: 4rem; /* Espacio para navbar si tienes */
}

/* --- Background Effects --- */
.cyber-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: grid-move 20s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.crt-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.8) 100%),
                linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 100%, 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* --- 1. Alert Bar --- */
.alert-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--color-red-500);
    color: var(--color-red-400);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.alert-icon { animation: blink 1s infinite; }

/* --- 2. Glitch Title --- */
.glitch-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* El efecto Glitch CSS puro */
.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050a10; /* Mismo color que fondo */
}

.glitch-title::before {
    left: 2px;
    text-shadow: -1px 0 #ef4444; /* Rojo */
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -2px;
    text-shadow: -1px 0 #22d3ee; /* Cyan */
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(14px, 9999px, 121px, 0); }
    20% { clip: rect(80px, 9999px, 5px, 0); }
    40% { clip: rect(30px, 9999px, 90px, 0); }
    60% { clip: rect(100px, 9999px, 40px, 0); }
    80% { clip: rect(10px, 9999px, 130px, 0); }
    100% { clip: rect(50px, 9999px, 20px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(109px, 9999px, 39px, 0); }
    20% { clip: rect(12px, 9999px, 82px, 0); }
    40% { clip: rect(67px, 9999px, 15px, 0); }
    60% { clip: rect(120px, 9999px, 94px, 0); }
    80% { clip: rect(34px, 9999px, 100px, 0); }
    100% { clip: rect(88px, 9999px, 10px, 0); }
}

/* ===== AJUSTE GLITCH ESCRITORIO (Menos Intenso) ===== */
@media (min-width: 1024px) {
    /* 1. ESTADO NORMAL (Quieto y legible) */
    .glitch-title::before,
    .glitch-title::after {
        content: none; /* Desactiva los fantasmas duplicados */
        display: none; 
    }

    /* 2. ESTADO HOVER (Solo al pasar el mouse) */
    .glitch-title:hover::before,
    .glitch-title:hover::after {
        content: attr(data-text); /* Reactiva el texto duplicado */
        display: block;
        opacity: 0.5; /* Fantasmas semitransparentes para no tapar el texto real */
        animation: glitch-anim 0.3s infinite linear alternate-reverse;
    }
    
    /* Opcional: Un pequeño temblor del texto principal al pasar el mouse */
    .glitch-title:hover {
        color: var(--color-white);
        text-shadow: 2px 0 var(--color-red-500), -2px 0 var(--color-cyan-400);
    }
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-blue-200);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.highlight-bug {
    color: var(--color-cyan-400);
    font-family: var(--font-mono);
    background: rgba(6, 182, 212, 0.1);
    padding: 0 5px;
}

/* --- 3. Boot Terminal --- */
.boot-terminal-window {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.15);
    text-align: left;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.window-bar {
    background: rgba(6, 182, 212, 0.1);
    padding: 8px 12px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.window-title { margin-left: 10px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.5); }

.terminal-screen {
    padding: 1.5rem;
    min-height: 140px; /* Altura fija para evitar saltos */
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-cyan-300);
    line-height: 1.6;
}

.cursor-block {
    display: inline-block;
    width: 0.6em;
    height: 1.1em;
    background: var(--color-cyan-400);
    vertical-align: middle;
    animation: blink 1s steps(1) infinite;
}

/* --- 4. CTA Pulse --- */
.hero-btn-pulse {
    background: var(--color-red-600);
    border-color: var(--color-red-500);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: pulse-red 2s infinite;
    min-width: 280px;
    text-align: center;
}

.hero-btn-pulse:hover {
    background: var(--color-red-500);
    transform: scale(1.05);
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.hero-note {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Animations Intro */
.slide-down { animation: slideDown 0.8s ease-out; }
.fade-in-up { animation: fadeInUp 1s ease-out 0.5s backwards; }

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

/* ===== AUTHOR SECTION v5 (RPG STYLE) ===== */

.author-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start; /* Alineación superior */
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .author-grid {
        grid-template-columns: 320px 1fr; /* Columna izquierda más ancha para aguantar el texto */
    }
}

/* --- Columna Izquierda (Visual) --- */
.author-visual-col {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.rpg-stats {
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 0.25rem;
}

.stat-row:last-child { border-bottom: none; margin-bottom: 0; }

.stat-label { color: var(--color-blue-200); }
.stat-val { color: var(--color-cyan-400); font-weight: bold; }
.flash-red { color: var(--color-red-400); animation: pulse-text 2s infinite; }

/* Caja Roja (System Log) */
.system-log-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--color-red-500);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.log-header {
    color: var(--color-red-400);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.log-text {
    color: var(--color-white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.log-subtext {
    color: var(--color-red-400);
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.3;
}

/* Nube de Skills */
.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.skill-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-cyan-300);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* --- Columna Derecha (Bio) --- */
.author-bio-col {
    padding-top: 0.5rem;
}

.author-intro {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pillar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.pillar-content strong {
    font-family: var(--font-mono);
    font-weight: 700;
    margin-right: 0.3rem; /* Pequeño espacio después de los dos puntos */
}

.pillar-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-blue-200);
    line-height: 1.6;
}

.author-footer {
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 1.5rem;
    font-style: italic;
    color: var(--color-cyan-200);
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Forzar que las etiquetas de la ficha sean compactas */
.stat-row {
    align-items: center; /* Centrado vertical */
}

.stat-label {
    white-space: nowrap; /* Evita que "LEVEL:" baje de línea */
    margin-right: 10px;  /* Espacio mínimo */
    font-size: 0.75rem;  /* Un pelín más pequeño para asegurar espacio */
}

.stat-val {
    text-align: right;
    white-space: nowrap;
    font-size: 0.85rem;
}

/* Ajustar caja roja para que sea compacta */
.system-log-box {
    padding: 0.8rem; /* Menos padding */
    margin-top: 1rem;
}

/* ===== FOTO DE PERFIL CYBERPUNK ===== */

/* 1. El Marco (Hace el recorte redondo) */
.profile-frame {
    /* Define el tamaño exacto */
    width: 180px;
    height: 180px;
    /* HACE QUE SEA REDONDO */
    border-radius: 50%;
    /* IMPORTANTE: Recorta todo lo que se salga del círculo */
    overflow: hidden;
    /* Centrado */
    margin: 0 auto 1.5rem auto;
    /* Borde tecnológico */
    border: 3px solid var(--color-cyan-800);
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.2), /* Resplandor externo */
        inset 0 0 20px rgba(0, 0, 0, 0.8); /* Sombra interna para profundidad */
    position: relative;
    background: #000; /* Fondo negro por si la imagen tarda en cargar */
}

/* 2. La Imagen (Aplica los filtros de color) */
.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la foto llene el círculo sin deformarse */
    
    /* --- EL FILTRO MÁGICO --- */
    /*
      grayscale(100%): Elimina el color natural (sol, verde).
      sepia(100%) + hue-rotate(170deg): Convierte el blanco y negro en tonos azul/cian.
      saturate(2): Intensifica el color cian.
      contrast(1.3) + brightness(0.9): Da un look dramático y digital de alto contraste.
    */
    filter: grayscale(100%) sepia(100%) hue-rotate(170deg) saturate(2) contrast(1.3) brightness(0.9);
    
    /* Se mezcla un poco con el fondo para un efecto de "holograma" */
    opacity: 0.9; 
    transition: all 0.5s ease;
}

/* Efecto opcional: Al pasar el mouse, la imagen se "enciende" un poco */
.profile-frame:hover .author-img {
    filter: grayscale(0%) sepia(80%) hue-rotate(170deg) saturate(3) contrast(1.4) brightness(1.1);
    opacity: 1;
}

/* 3. La Línea de Escaneo (Animación) */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Línea fina */
    background: var(--color-cyan-400);
    box-shadow: 0 0 15px var(--color-cyan-400), 0 0 5px var(--color-white);
    opacity: 0.6;
    z-index: 2;
    /* Animación de barrido constante */
    animation: scan-down 4s linear infinite;
}

@keyframes scan-down {
    0% { top: -10%; opacity: 0; }
    15% { opacity: 0.8; }
    85% { opacity: 0.8; }
    100% { top: 110%; opacity: 0; }
}

/* ===== USER LOGS (TESTIMONIOS) ===== */
.logs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.user-log-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

.user-log-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    color: rgba(6, 182, 212, 0.1);
    font-family: serif;
}

.log-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.user-id { color: var(--color-blue-300); opacity: 0.7; }

.log-status { padding: 2px 6px; border-radius: 2px; font-weight: bold; }
.log-status.success { color: var(--color-green-400); background: rgba(34, 197, 94, 0.1); }
.log-status.warning { color: var(--color-yellow-400); background: rgba(250, 204, 21, 0.1); }
.log-status.info { color: var(--color-cyan-400); background: rgba(6, 182, 212, 0.1); }

.log-content {
    color: var(--color-blue-200);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.user-role {
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-cyan-600);
    font-family: var(--font-mono);
}

/* ===== MOCKUP LIBRO CSS 3D ===== */
.book-mockup-container {
    perspective: 1000px;
    width: 160px; /* Tamaño del libro */
    height: 220px;
    margin: 0 auto 2rem; /* Centrado */
}

.book {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(5deg); /* Inclinación 3D */
    transition: transform 0.5s ease;
}

.book:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05); /* Efecto al pasar mouse */
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0a1628;
    border: 2px solid var(--color-cyan-400);
    border-radius: 2px 6px 6px 2px;
    transform: translateZ(25px); /* Grosor */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
}

.cover-content {
    text-align: center;
    color: var(--color-cyan-400);
    font-family: var(--font-mono);
    padding: 10px;
    border: 1px dashed rgba(6, 182, 212, 0.3);
    width: 85%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cover-title { font-weight: 800; font-size: 1.2rem; line-height: 1.1; letter-spacing: 2px; color: white; }
.cover-icon { font-size: 2rem; margin: 10px 0; }
.cover-subtitle { font-size: 0.5rem; color: var(--color-green-400); }
.cover-author { font-size: 0.6rem; color: var(--color-blue-300); }

.book-spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px; /* Grosor del lomo */
    height: 100%;
    background: #06b6d4; /* Cyan más oscuro */
    transform: rotateY(-90deg) translateZ(25px);
    border-left: 1px solid rgba(255,255,255,0.2);
}

.book-side {
    position: absolute;
    top: 0;
    /*right: 0;*/
    width: 50px;
    height: 100%;
    background: #fff; /* Hojas */
    transform: rotateY(90deg) translateZ(135px); /* Ajuste matemático según ancho */
    background-image: linear-gradient(90deg, #eee 1px, transparent 1px);
    background-size: 3px 100%;
}

/* Estilos para los mensajes de respuesta de la consola */
#console-message {
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-left: 2px solid; /* El color se define por JS (verde/rojo/amarillo) */
    animation: type-in 0.5s ease-out;
}

@keyframes type-in {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
