@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    /* Glowing electric blue radial gradient background on deep dark space blue */
    background-color: #030614; 
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 114, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 224, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(13, 27, 42, 1) 0%, #030614 100%);
    background-attachment: fixed;
    
    color: #e0e6ed; /* Soft white/grey */
    font-family: 'Satoshi', sans-serif;
    font-size: 21px;
    line-height: 1.7;
    padding: 6rem 2rem;
    -webkit-font-smoothing: antialiased;
}

.manifesto-container { 
    max-width: 640px; 
    margin: 0 auto; 
}

.hero-title { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 4rem; 
    letter-spacing: -0.03em; 
    color: #ffffff;
}

.hero-title em { 
    /* Electric blue gradient text */
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-weight: 700;
}

.text-body p { margin-bottom: 2rem; color: #b0c4de; }
.text-body strong { font-weight: 700; color: #ffffff; }

/* Dark Glassmorphism for highlights */
.highlight-text { 
    font-size: 1.45rem; 
    font-weight: 600; 
    line-height: 1.6; 
    margin: 5rem -2.5rem; 
    padding: 2.5rem 3rem; 
    
    /* Dark frosted glass */
    background: rgba(10, 25, 50, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 198, 255, 0.05);
    
    color: #ffffff; 
    position: relative;
    overflow: hidden;
}

/* Subtle glowing cyan line on top of the glass card */
.highlight-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00c6ff 50%, transparent 100%);
    opacity: 0.8;
}

.final-cta { 
    margin-top: 7rem; 
    font-size: 1.6rem; 
    font-weight: 700; 
    text-align: center; 
    display: block; /* para que anime bien el hover */
    
    /* Glowing tech button */
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    color: #ffffff;
    padding: 3rem 2rem; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3); 
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.final-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.5);
}

/* Secondary Buttons Section */
.content-links {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.content-links p {
    color: #b0c4de;
    margin-bottom: 2rem;
}

.buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    padding: 1.2rem 2rem;
    background: rgba(10, 25, 50, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    color: #e0e6ed;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.6);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: #6b7c93;
    text-align: center;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-links a { color: #6b7c93; text-decoration: none; margin: 0 1rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #00c6ff; }

@media (max-width: 768px) {
    body { padding: 3rem 1.5rem; font-size: 19px; }
    .hero-title { font-size: 2.6rem; }
    .highlight-text { margin: 3rem 0; padding: 2rem; border-radius: 12px; }
    .final-cta { font-size: 1.3rem; padding: 2.5rem 1.5rem; margin-top: 5rem; }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title.reveal {
    transition-delay: 0.1s;
}
