.eamem-standalone-body{margin:0;min-height:100vh;background:#050000;}
.eamem-gateway {
    box-sizing: border-box;
    width: 100%;
    min-height: 650px;
    display: grid;
    place-items: center;
    padding: clamp(24px, 5vw, 72px);
    color: #fff;
    background:
        radial-gradient(circle at 50% 10%, rgba(212, 175, 55, .18), transparent 32%),
        linear-gradient(145deg, #1a0000, #050000);
}

.eamem-gateway *,
.eamem-gateway *::before,
.eamem-gateway *::after {
    box-sizing: border-box;
}

.eamem-gateway__panel {
    width: min(980px, 100%);
    padding: clamp(30px, 5vw, 60px);
    border: 1px solid rgba(212, 175, 55, .55);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(38, 0, 0, .96), rgba(11, 0, 0, .98));
    box-shadow: 0 28px 80px rgba(0, 0, 0, .52);
    text-align: center;
}

.eamem-gateway__logo {
    display: block;
    width: min(240px, 65vw);
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.eamem-gateway__eyebrow {
    margin: 0 0 10px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eamem-gateway h1 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
}

.eamem-gateway__intro {
    margin: 18px 0 30px;
    font-size: clamp(16px, 2vw, 20px);
}

.eamem-gateway__choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.eamem-gateway__choice {
    margin: 0;
}

.eamem-gateway__choice button {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px;
    border: 1px solid rgba(212, 175, 55, .45);
    border-radius: 20px;
    color: #fff;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.eamem-gateway__choice button:hover,
.eamem-gateway__choice button:focus-visible {
    transform: translateY(-4px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, .07);
    outline: 2px solid transparent;
}

.eamem-gateway__code {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    font-weight: 900;
}

.eamem-gateway__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eamem-gateway__text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.eamem-gateway__text small {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.45;
}

.eamem-gateway__arrow {
    color: #d4af37;
    font-size: 24px;
}

.eamem-gateway__note {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}

@media (max-width: 800px) {
    .eamem-gateway {
        min-height: auto;
        padding: 20px;
    }

    .eamem-gateway__choices {
        grid-template-columns: 1fr;
    }

    .eamem-gateway__choice button {
        min-height: 145px;
    }
}
