.vision-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    padding: 8vw 12vw;
    box-sizing: border-box;
    width: 100%;
}

/* Glass image container — 505:360 ratio relative to pillar cards (28vw) = ~39.3vw */
.vision-glass {
    width: 39.3vw;
    height: 39.3vw;
    flex-shrink: 0;
    border-radius: 4vw;
    position: relative;
    overflow: hidden;

    /* Same glass surface as pillar cards */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px) saturate(100%) contrast(120%);
    -webkit-backdrop-filter: blur(20px) saturate(100%) contrast(120%);

    /* No border — handled by ::before gradient */
    border: none;

    /* Same shadow style as pillar cards */
    box-shadow:
        0 0 80px rgba(0, 0, 0, 0.15),
        0 8px 32px 0 rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Smooth gradient border matching pillar cards */
.vision-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.35) 70%,
        rgba(255, 255, 255, 0.5) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.vision-statue {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Right-hand text block */
.vision-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 30vw;
}

.vision-title {
    font-family: 'Arsenica Trial', serif;
    font-weight: 700;
    font-size: 4vw;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.15;
    margin: 0;
    text-align: left;
}

.vision-body {
    font-family: 'Source Code Pro', monospace;
    font-size: clamp(11px, 1vw, 16px);
    color: #ffffff;
    line-height: 1.7;
    margin: 2vw 0 0 0;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ---- Mobile: stack vertically ---- */
@media (max-width: 768px) {
    .vision-section {
        flex-direction: column;
        padding: 12vw 10vw;
        gap: 8vw;
    }
    .vision-glass {
        width: 80vw;
        height: 80vw;
        border-radius: 60px;
    }
    .vision-text-wrapper {
        max-width: 100%;
    }
    .vision-title {
        font-size: 8vw;
    }
    .vision-body {
        font-size: 3.5vw;
    }
}
