:root {
    --navy: #0B1C3F;
    --blue: #1344A0;
    --gold: #ffd202;
    --gold-lt: #E8AE30;
    --white: #fff;
    --light: #F4F7FC;
    --muted: #6B7280;
    --border: #DDE3EF;
}

/* ── BETA BANNER ── */
.beta-banner {
    background: linear-gradient(90deg, #0B1C3F 0%, #1344A0 100%);
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.beta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.beta-banner-text {
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.beta-banner-text strong {
    color: var(--gold);
}

.beta-banner-text .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

.btn-try-beta {
    background: var(--gold);
    border: none;
    color: #001c54;
    font-weight: 700;
    font-size: .8rem;
    border-radius: 8px;
    padding: .42rem 1.1rem;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.btn-try-beta:hover {
    background: #baa543;
}




/* ── TRY BETA MODAL ── */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(11, 28, 63, .2);
}

.modal-backdrop.show {
    backdrop-filter: blur(4px);
}

@keyframes pop-modal {
    from {
        opacity: 0;
        transform: scale(.95) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.modal.show .modal-dialog {
    animation: pop-modal .35s cubic-bezier(.34, 1.56, .64, 1) both;
}

.tm-header {
    background: var(--navy);
    padding: 2.2rem 2rem 1.8rem;
    position: relative;
    overflow: hidden;
}

.tm-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 38px solid rgba(200, 151, 42, .14);
}

.tm-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 24px solid rgba(255, 255, 255, .05);
}

.tm-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}



.tm-title {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.22;
    margin-bottom: .8rem;
    position: relative;
    z-index: 1;
}

.tm-title .acc {
    color: #E8AE30;
}

.tm-body {
    font-size: .88rem;
    color: rgba(255, 255, 255, .73);
    line-height: 1.7;
    margin-bottom: 1.3rem;
    position: relative;
    z-index: 1;
}

.tm-time {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;
    padding: .26rem .78rem;
    font-size: .74rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1.3rem;
    position: relative;
    z-index: 1;
}

.btn-go-beta {
    background: var(--gold);
    border: none;
    color: #001c54;
    font-weight: 700;
    font-size: .92rem;
    border-radius: 10px;
    padding: .76rem 1.5rem;
    width: 100%;
    transition: .2s;
    box-shadow: 0 5px 18px rgba(200, 151, 42, .38);
    position: relative;
    z-index: 1;
}

.btn-go-beta:hover {
    background: #baa543;
    color: #fff;
    transform: translateY(-1px);
}

.btn-dismiss {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    font-size: .88rem;
    border-radius: 10px;
    padding: .66rem 1.5rem;
    width: 100%;
    transition: .2s;
    margin-top: .55rem;
    position: relative;
    z-index: 1;
}

.btn-dismiss:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.tm-footer-note {
    text-align: center;
    font-size: .72rem;
    color: rgba(255, 255, 255, .38);
    margin-top: .65rem;
    position: relative;
    z-index: 1;
}

.tm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    z-index: 10;
}

.tm-close:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}



/* site-level comparison in modal */
.tm-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.cmp-box {
    border-radius: 10px;
    padding: .9rem 1rem;
    border: 1px solid;
}

.cmp-box.old {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
}

.cmp-box.new {
    border-color: rgba(200, 151, 42, .35);
    background: rgba(200, 151, 42, .08);
}

.cmp-label {
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    opacity: .55;
    margin-bottom: .4rem;
}

.cmp-box.new .cmp-label {
    color: var(--gold);
    opacity: .8;
}

.cmp-item {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .15rem 0;
}

.cmp-item i {
    font-size: .7rem;
}

.cmp-box.new .cmp-item {
    color: rgba(255, 255, 255, .88);
}

@media(max-width:575px) {
    .tm-compare {
        grid-template-columns: 1fr;
    }


    .beta-banner-text {
        font-size: .76rem;
    }
}