.manifest-hero {
    padding: 180px 24px 100px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(20,20,20,1) 0%, rgba(2,2,2,1) 100%);
    position: relative;
    z-index: 2;
}

.manifest-title {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: #fff;
}

.manifest-lead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-section {
    padding: 140px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #020202;
    position: relative;
    z-index: 20;
    border-top: 1px solid rgba(var(--danger-red-rgb), 0.2);
    border-bottom: 1px solid rgba(var(--danger-red-rgb), 0.2);
}

.stat-number {
    font-weight: 800;
    font-size: clamp(6rem, 20vw, 20rem);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 2px var(--danger-red);
    position: relative;
    z-index: 2;
    animation: pulseDanger 3s infinite;
    will-change: transform;
}

    .stat-number::after {
        content: '90%';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--danger-red);
        opacity: 0.1;
        filter: blur(40px);
        z-index: -1;
        animation: pulseGlow 3s infinite;
    }

.stat-context {
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    z-index: 3;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    color: var(--danger-red);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.stat-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #fff;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
    max-width: 600px;
    margin-top: 20px;
}

@keyframes pulseDanger {
    0%, 100% {
        -webkit-text-stroke-color: var(--danger-red);
        transform: scale(1);
    }

    50% {
        -webkit-text-stroke-color: #ff5252;
        transform: scale(1.02);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.1;
        filter: blur(30px);
    }

    50% {
        opacity: 0.25;
        filter: blur(50px);
    }
}

.editorial-section {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 35px;
}

    .editorial-text strong {
        color: #fff;
        font-weight: 600;
    }

.highlight-box {
    border-left: 2px solid var(--primary-green);
    padding-left: 30px;
    margin: 60px 0;
}

.highlight-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 20px;
}

.highlight-author {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillars-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #020202;
    position: relative;
    z-index: 20;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-header {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.monolith {
    background: linear-gradient(180deg, rgba(20,20,20,1) 0%, rgba(10,10,10,1) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.monolith-bg-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-weight: 800;
    font-size: 8rem;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s, transform 0.4s;
}

.scan-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
    box-shadow: 0 0 15px var(--primary-green);
    opacity: 0;
}

.monolith:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
}

    .monolith:hover .monolith-bg-num {
        color: rgba(var(--primary-green-rgb), 0.1);
        transform: scale(1.1);
    }

    .monolith:hover .scan-beam {
        opacity: 0.25;
        animation: scanDown 1.5s linear infinite;
    }

@keyframes scanDown {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

.monolith-icon {
    font-size: 2rem;
    margin-bottom: 30px;
}

    .monolith-icon svg {
        fill: #fff;
        height: 40px;
        transition: fill 0.3s;
    }

.monolith:hover .monolith-icon svg {
    fill: var(--primary-green);
}

.monolith-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.monolith-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 300;
}

.manifest-cta {
    padding: 140px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-note {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 25px;
    display: block;
    opacity: 0.9;
}

.cta-header {
    margin-bottom: 30px;
}

.btn-main-link {
    text-decoration: none;
}

@media (max-width: 768px) {
    .manifest-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .stat-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .editorial-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pillars-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .manifest-cta {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .manifest-title {
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 25vw;
        -webkit-text-stroke-width: 1px;
    }

    .stat-context {
        margin-top: 20px;
    }

    .editorial-text {
        font-size: 1rem;
        text-align: left;
    }

    .highlight-box {
        margin: 40px 0;
        padding-left: 20px;
        border-left-width: 2px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .monolith {
        padding: 30px 20px;
    }

    .monolith-bg-num {
        font-size: 5rem;
        top: 0;
        right: 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
