/**
 * Manifeste Page Styles
 * Powerful, emotional, Swiss-inspired design
 */

/* ==================== */
/* HERO MANIFESTO */
/* ==================== */
.manifesto-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.manifesto-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: pulse-background 8s ease-in-out infinite;
}

@keyframes pulse-background {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.manifesto-hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.manifesto-hero-title {
    font-size: clamp(3rem, 8vw, 5.6rem);
    font-weight: 900;
    line-height: 0.98;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.manifesto-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #d1d5db;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.manifesto-hero-statement {
    font-size: clamp(1.18rem, 2.6vw, 1.72rem);
    line-height: 1.68;
    color: #f3f4f6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.manifesto-hero-statement strong {
    color: #ef4444;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

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

/* ==================== */
/* MANIFESTO SECTIONS */
/* ==================== */
.manifesto-section {
    padding: 8rem 0;
    position: relative;
}

.belief-section {
    background: white;
}

.work-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.drive-section {
    background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
}

.why-section {
    background: linear-gradient(180deg, #fef2f2 0%, #fee2e2 100%);
}

.manifesto-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
    animation: fadeIn 1s ease-out;
}

.manifesto-section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
    animation: fadeInUp 0.8s ease-out;
}

.manifesto-text-large {
    font-size: clamp(1.22rem, 2.8vw, 1.72rem);
    line-height: 1.68;
    text-align: center;
    color: #374151;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.manifesto-text-large strong {
    color: #ef4444;
    font-weight: 700;
}

.manifesto-text {
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.8;
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.flag-icon {
    font-size: 2rem;
    display: inline-block;
    vertical-align: middle;
}

/* ==================== */
/* SWISS VALUES GRID */
/* ==================== */
.swiss-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.swiss-value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #ef4444;
}

.swiss-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.swiss-value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.75rem;
}

.swiss-value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.swiss-value-text {
    color: #6b7280;
    font-size: 1rem;
}

/* ==================== */
/* HIGHLIGHT BOX */
/* ==================== */
.manifesto-highlight-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 6px solid #ef4444;
    padding: 3rem;
    border-radius: 1.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.1);
}

.manifesto-highlight-text {
    font-size: 1.875rem;
    line-height: 1.6;
    color: #111827;
    text-align: center;
}

.manifesto-highlight-text strong {
    color: #ef4444;
}

/* ==================== */
/* STATS */
/* ==================== */
.manifesto-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.manifesto-stat {
    text-align: center;
}

.manifesto-stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.manifesto-stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.manifesto-stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.manifesto-stat-sublabel {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ==================== */
/* QUOTE LARGE */
/* ==================== */
.manifesto-quote-large {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: #ef4444;
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-mark.closing {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.manifesto-quote-large p {
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    line-height: 1.56;
    color: #111827;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.manifesto-quote-large strong {
    color: #ef4444;
    font-weight: 700;
}

/* ==================== */
/* FINAL SECTION */
/* ==================== */
.manifesto-final {
    position: relative;
    padding: 10rem 0;
    background: #111827;
    overflow: hidden;
}

.manifesto-final-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.manifesto-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.3;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

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

.manifesto-final-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.manifesto-final-subtitle {
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 4rem;
}

.manifesto-final-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-manifesto-primary {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    text-decoration: none;
}

.btn-manifesto-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.btn-manifesto-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-manifesto-secondary:hover {
    background: white;
    color: #111827;
    transform: translateY(-4px);
}

/* Trust Indicators */
.manifesto-trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-indicator {
    color: #9ca3af;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1024px) {
    .manifesto-hero-title {
        font-size: 4rem;
    }
    
    .manifesto-section-title {
        font-size: 2.5rem;
    }
    
    .manifesto-text-large {
        font-size: 1.5rem;
    }
    
    .manifesto-quote-large p {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .manifesto-hero-title {
        font-size: 3rem;
    }
    
    .manifesto-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .manifesto-hero-statement {
        font-size: 1.25rem;
    }
    
    .manifesto-section {
        padding: 5rem 0;
    }
    
    .manifesto-section-title {
        font-size: 2rem;
    }
    
    .manifesto-text-large {
        font-size: 1.25rem;
    }
    
    .manifesto-quote-large p {
        font-size: 1.5rem;
    }
    
    .manifesto-final-title {
        font-size: 2rem;
    }
    
    .manifesto-final-subtitle {
        font-size: 1.25rem;
    }
    
    .manifesto-final-cta {
        flex-direction: column;
    }
    
    .btn-manifesto-primary,
    .btn-manifesto-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .manifesto-stat-number {
        font-size: 3rem;
    }
}
