/* ==========================================================================
   MANIFESTE — Page-Specific Styles
   ========================================================================== */

.manifeste-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 100px;
    background: #171717;
    position: relative;
    overflow: hidden;
}

.manifeste-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
}

.manifeste-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.manifeste-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(80px, 15vw, 150px);
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.manifeste-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.manifeste-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.scroll-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s ease infinite;
}

.scroll-cta span {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Content Sections */
.manifeste-content {
    background: var(--gray-50);
}

.manifeste-section {
    padding: 100px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.manifeste-block {
    margin-bottom: 4rem;
}

.manifeste-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.manifeste-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.manifeste-block strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Highlight Quote */
.manifeste-quote {
    background: #171717;
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.manifeste-quote blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.manifeste-quote blockquote span {
    background: linear-gradient(135deg, #667eea 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Death Notice */
.death-notice {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.death-notice::before {
    content: '💀';
    font-size: 3rem;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-50);
    padding: 0 1rem;
}

.death-notice h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.death-notice .rip-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.death-notice .rip-list li {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}

.death-notice .date {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-style: italic;
}

/* The New Way */
.new-way {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.new-way h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.new-way ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-way li {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.new-way li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

/* Principles */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.principle-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.principle-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.manifeste-cta {
    background: #171717;
    padding: 100px 5%;
    text-align: center;
}

.manifeste-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.manifeste-cta p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.manifeste-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.manifeste-cta .btn-primary {
    background: white;
    color: #171717;
}

.manifeste-cta .btn-primary:hover {
    background: var(--gray-100);
}

.manifeste-cta .btn-secondary {
    border-color: var(--gray-700);
    color: white;
}

.manifeste-cta .btn-secondary:hover {
    border-color: white;
}

/* CTA Section (generic .cta used in HTML) */
.cta {
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta .container,
.cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dark Mode Overrides */
[data-theme="dark"] .manifeste-content {
    background: #0a0a0a;
}

[data-theme="dark"] .death-notice {
    background: #141414;
    border-color: #2e2e2e;
}

[data-theme="dark"] .death-notice::before {
    background: #0a0a0a;
}

[data-theme="dark"] .death-notice h3 {
    color: #fafafa;
}

[data-theme="dark"] .death-notice .rip-list li {
    color: #a3a3a3;
}

[data-theme="dark"] .death-notice .date {
    color: #71717a;
}

[data-theme="dark"] .new-way {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

[data-theme="dark"] .new-way h3 {
    color: #fafafa;
}

[data-theme="dark"] .new-way li {
    color: #d4d4d4;
}

[data-theme="dark"] .principle-card {
    background: #141414;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .principle-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .principle-card h4 {
    color: #fafafa;
}

[data-theme="dark"] .principle-card p {
    color: #d4d4d4;
}

[data-theme="dark"] .cta {
    background: #0a0a0a;
}

[data-theme="dark"] .cta h2 {
    color: #fafafa;
}

[data-theme="dark"] .cta p {
    color: #d4d4d4;
}

[data-theme="dark"] .cta .btn-primary {
    background: #fafafa;
    color: #171717;
}

[data-theme="dark"] .cta .btn-ghost {
    color: #fafafa;
    border-color: #3f3f46;
}

[data-theme="dark"] .cta .btn-ghost:hover {
    border-color: #fafafa;
}

@media (max-width: 768px) {
    .death-notice,
    .new-way {
        padding: 2rem 1.5rem;
    }

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

    .manifeste-cta .cta-buttons {
        flex-direction: column;
    }

    .manifeste-cta .btn {
        width: 100%;
    }
}
