/* ezrs_beta.css — Beta-specific additions for the beta login page.
   Loaded AFTER ezrs-login.css, so it reuses its design tokens (--green-*, --ink-*, --radius*). */

/* ── Registered-trademark mark ── */
.ezrs-reg {
    font-size: 0.6em;
    vertical-align: super;
    line-height: 0;
    margin-left: 1px;
}

/* In the large display headline, `super` lifts the mark into the line above and
   collides with its descenders. Pin it to the top of its own line instead. */
.ezrs-login-headline .ezrs-reg {
    font-size: 0.42em;
    vertical-align: top;
    line-height: 1.1;
    margin-left: 2px;
}

/* ── Top beta banner ── */
.ezrs-beta-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 24px;
    background: var(--green-900);
    border-bottom: 1px solid rgba(134, 239, 172, 0.18);
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}

.ezrs-beta-topbar-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--green-300);
    color: var(--green-900);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ezrs-beta-topbar-text {
    font-weight: 600;
    color: rgba(220, 252, 231, 0.9);
}

/* ── Hero tagline + Private Beta pill row ── */
.ezrs-login-tagline-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* keep the tagline's own bottom margin from doubling up inside the row */
.ezrs-login-tagline-row .ezrs-login-tagline {
    margin-bottom: 0;
}

.ezrs-beta-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 11px;
    border: 1px solid rgba(134, 239, 172, 0.5);
    border-radius: 999px;
    color: var(--green-300);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ── Hero beta checklist ── */
.ezrs-beta-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    max-width: 460px;
}

.ezrs-beta-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(220, 252, 231, 0.85);
    margin-bottom: 12px;
}

.ezrs-beta-checklist li:last-child {
    margin-bottom: 0;
}

.ezrs-beta-checklist li i {
    flex: 0 0 auto;
    font-size: 16px;
    color: var(--green-300);
}

/* ── BETA badge on the card logo ── */
.ezrs-beta-logo-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.ezrs-beta-logo-badge {
    position: absolute;
    right: -10px;
    bottom: -4px;
    padding: 1px 8px;
    border-radius: 999px;
    background: var(--green-800);
    color: var(--green-100);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 575.98px) {
    .ezrs-beta-topbar {
        padding: 8px 16px;
        font-size: 12px;
    }
}
