/* ==========================================================================
   Statement Reveal Component
   ========================================================================== */

.statement-reveal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: var(--surface-bg);
    color: var(--surface-text);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    /* Click anywhere to close */
}

.statement-reveal.is-active {
    opacity: 1;
    visibility: visible;
}

.statement-reveal__inner {
    max-width: 1200px;
    /* Slightly wider for bilingual rows */
    margin: 0 auto;
    padding: var(--space-xl) var(--edge-margin);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.statement-reveal__header {
    margin-bottom: var(--space-md);
}

.statement-reveal__title {
    margin: 0;
    display: flex;
    align-items: center;
}

.statement-reveal__logo {
    height: 35px;
    /* Scaled for header prominence */
    width: auto;
    display: block;
}

.statement-reveal__subtitle {
    font-size: var(--text-small);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.statement-reveal__content {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    cursor: default;
}

.statement-reveal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
}

@media (max-width: 800px) {
    .statement-reveal__row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
}

.statement-reveal__col--en {
    opacity: 0.6;
    /* English slightly less prominent? Or swap? User said "English on the left" */
}

.statement-reveal__content p {
    margin-bottom: 0;
    max-width: 60ch;
}

.statement-reveal__content strong {
    font-weight: 700;
    color: #fff;
}

.statement-reveal__close {
    position: absolute;
    top: var(--edge-margin);
    right: var(--edge-margin);
    background: none;
    border: none;
    color: var(--surface-text);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.statement-reveal__close:hover {
    opacity: 1;
}

.statement-reveal__close svg {
    width: 24px;
    height: 24px;
}

/* GSAP handles reveal animations */