/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 7vw;
}

.stat-item {
    padding: 3.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: statReveal 0.6s ease forwards;
    animation-play-state: paused;
}

@keyframes statReveal {
    to { opacity: 1; transform: translateY(0); }
}

.stat-item:last-child {
    border-right: none;
}

.stats-bar.in-view .stat-item {
    animation-play-state: running;
}

.stats-bar.in-view .stat-item:nth-child(1) { animation-delay: 0s; }
.stats-bar.in-view .stat-item:nth-child(2) { animation-delay: 0.1s; }
.stats-bar.in-view .stat-item:nth-child(3) { animation-delay: 0.2s; }
.stats-bar.in-view .stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

.stat-number sup {
    font-size: 0.45em;
    vertical-align: super;
    font-weight: 500;
    opacity: 0.6;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   MANIFESTO SPLIT SECTION
   ============================================ */

.manifesto-section {
    background: var(--bg-dark);
    padding: 7rem 0;
}

.manifesto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 7vw;
    align-items: center;
    min-height: 540px;
}

.manifesto-text {
    padding-right: 6vw;
}

.manifesto-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.manifesto-headline {
    font-size: clamp(2.25rem, 3.8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.manifesto-headline em {
    font-style: italic;
    color: rgba(255,255,255,0.5);
}

.manifesto-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.manifesto-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 0.375rem;
    transition: border-color 0.3s, gap 0.3s;
}

.manifesto-cta svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.manifesto-cta:hover {
    border-color: var(--text-white);
    gap: 0.9rem;
}

.manifesto-cta:hover svg {
    transform: translateX(4px);
}

.manifesto-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 540px;
}

.manifesto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.manifesto-image:hover img {
    transform: scale(1.04);
}

/* ============================================
   WHY EUROASIA — PILLARS
   ============================================ */

.pillars-section {
    background: #0d0d0e;
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 7vw;
}

.pillars-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
}

.pillars-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 7vw;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1rem;
    overflow: hidden;
}

.pillar {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: background 0.3s;
    opacity: 0;
    transform: translateY(24px);
    animation: pillarReveal 0.6s ease forwards;
    animation-play-state: paused;
}

@keyframes pillarReveal {
    to { opacity: 1; transform: translateY(0); }
}

.pillars-section.in-view .pillar {
    animation-play-state: running;
}

.pillars-section.in-view .pillar:nth-child(1) { animation-delay: 0s; }
.pillars-section.in-view .pillar:nth-child(2) { animation-delay: 0.12s; }
.pillars-section.in-view .pillar:nth-child(3) { animation-delay: 0.24s; }

.pillar:last-child {
    border-right: none;
}

.pillar:hover {
    background: rgba(255,255,255,0.03);
}

.pillar-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.75rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}

.pillar:hover .pillar-icon {
    color: rgba(255,255,255,0.7);
}

.pillar-number {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.2);
    margin-bottom: 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.pillar-body {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .manifesto-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .manifesto-text {
        padding-right: 0;
    }

    .manifesto-image {
        height: 400px;
    }

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

    .pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .pillar:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 5vw;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    .manifesto-section {
        padding: 4rem 0;
    }

    .manifesto-inner {
        margin: 0 5vw;
    }

    .manifesto-headline {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

    .manifesto-image {
        height: 300px;
    }

    .pillars-section {
        padding: 4rem 0;
    }

    .pillars-grid {
        margin: 0 5vw;
    }

    .pillar {
        padding: 2rem 1.75rem;
    }
}
