/* gateway.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, button, input, select, textarea, a, span, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

body {
    background: radial-gradient(circle at 15% 50%, #16a4e9 0%, #0283fd 35%, #000c1a 80%);
    color: #f1f5f9;
    min-height: 650px;
    min-width: 1000px;
    overflow: hidden; /* Prevent horizontal and vertical scrollbars completely */
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* high-tech background tracking grid overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.gateway-container {
    width: 100%;
    min-width: 1000px;
    height: 100vh;
    min-height: 650px;
    display: flex;
    z-index: 2;
}

/* Left panel style: Floating workspace glass card */
.auth-panel {
    flex: 0 0 440px;
    height: calc(100vh - 72px);
    margin: 36px 0 36px 36px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 44px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    z-index: 10;
    box-sizing: border-box;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        0 15px 35px -5px rgba(0, 0, 0, 0.25),
        0 5px 15px -5px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-panel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.brand-brandmark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    user-select: none;
}

.abrs-logo-text {
    font-family: 'Times New Roman', 'Playfair Display', 'Cinzel', 'Merriweather', 'Georgia', serif !important;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #000000;
    line-height: 1;
}

.abrs-logo-divider {
    width: 2px;
    height: 20px;
    background: #000000;
    border-radius: 1px;
    display: inline-block;
    opacity: 0.85;
}

.abrs-logo-tagline-wrapper {
    display: inline-flex;
    align-items: center;
    min-width: 140px;
}

.abrs-logo-tagline {
    font-family: 'Times New Roman', 'Playfair Display', 'Cinzel', 'Merriweather', 'Georgia', serif !important;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 12px;
    background-color: #000000;
    margin-left: 2px;
    vertical-align: middle;
    animation: cursor-blink 0.75s step-end infinite;
    transition: opacity 0.15s ease;
}

.typewriter-cursor.cursor-hidden {
    display: none !important;
    opacity: 0 !important;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.brand-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.08));
}

.auth-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
}

.auth-title {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
    color: #0f172a; /* var(--color-slate-900) */
}

.auth-subtitle {
    font-size: 0.88rem;
    color: #334155; /* var(--color-slate-700) */
    line-height: 1.55;
    margin-bottom: 32px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

/* Styled as premium tag capsule matching workspace .app-tag styling exactly */
.form-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #334155; /* var(--color-slate-700) */
    background: rgba(255, 255, 255, 0.4);
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 20px;
    font-size: 1.1rem;
    color: #334155;
    pointer-events: none;
}

/* Premium glassmorphic inputs matching workspace transition systems */
.org-input {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px; /* Pill shape */
    padding: 0 24px 0 48px;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.org-input:focus {
    border-color: #003b71; /* workspace dark blue theme primary */
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 59, 113, 0.15);
}

.org-input.input-error {
    border-color: #ef4444 !important;
    background: rgba(254, 226, 226, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18) !important;
    animation: input-shake 0.35s ease-in-out;
}

@keyframes input-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
}

.error-text {
    font-size: 0.76rem;
    font-weight: 600;
    color: #dc2626;
    margin-top: 6px;
    padding-left: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Connect button styled matching workspace CTA capsule buttons exactly */
.btn-connect {
    width: 100%;
    height: 52px;
    background: #003b71; /* solid dark blue CTA from workspace */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px; /* Pill shape matching workspace buttons */
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px 0 24px;
    box-shadow: 0 4px 12px rgba(0, 59, 113, 0.15);
}

.btn-connect:hover {
    background: #002244; /* darker blue highlight */
    box-shadow: 0 6px 16px rgba(0, 59, 113, 0.3);
    transform: translateY(-1px); /* Removed scale to eliminate font rendering stutters */
}

.btn-connect:active {
    transform: translateY(0);
}

.btn-left-icon {
    font-size: 1.28rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.btn-text {
    flex: 1;
    text-align: center;
}

.btn-right-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, background-color;
}

.btn-connect:hover .btn-right-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(2px);
}

/* Production Secure Connection Gateway Popup Modal */
.auth-modal-overlay, .auth-modal-overlay * {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(0, 12, 26, 0.45) 0%, rgba(0, 8, 18, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@keyframes card-breath {
    0% { 
        transform: scale(1); 
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 25px 60px -15px rgba(0, 0, 0, 0.5), 0 0 80px rgba(2, 131, 253, 0.02); 
    }
    50% { 
        transform: scale(1.002); 
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.18), 0 25px 60px -15px rgba(0, 0, 0, 0.52), 0 0 100px rgba(2, 131, 253, 0.06); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 25px 60px -15px rgba(0, 0, 0, 0.5), 0 0 80px rgba(2, 131, 253, 0.02); 
    }
}

.auth-modal-card {
    background: rgba(255, 255, 255, 0.72); /* Approved premium frosted glass background - richer white tone */
    border: 1px solid rgba(255, 255, 255, 0.55); /* White glossy reflection border */
    border-radius: 28px;
    padding: 40px 28px; 
    width: 680px; 
    max-width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        0 25px 60px -15px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(2, 131, 253, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: card-breath 8s ease-in-out infinite;
}

.modal-logo {
    display: block;
    margin: 0 auto 16px auto; 
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.08));
}

.modal-title {
    font-size: 0.76rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #003b71; /* High-contrast workspace blue for readability over white background */
    margin-bottom: 28px; 
    text-align: center;
}

.modal-steps {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 0;
}

/* Individual Card style for each step */
.modal-step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.35); /* Whitish transparent glass background - increased white tone */
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px; 
    padding: 24px 12px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-icon-wrapper {
    width: 58px; 
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7); /* Richer transparent glass wrapper */
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; 
    color: rgba(15, 23, 42, 0.4); 
    margin-bottom: 12px; 
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Spinner border overlay directly spinning around the circle wrapper on Active */
.step-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -4px; /* Adjusted spinner offset for smaller diameter */
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #0283fd;
    display: none;
}

.modal-step-card.active .step-icon-wrapper::after {
    display: block;
    animation: spin 1s linear infinite;
}

.step-text {
    font-size: 0.76rem; /* Refined typography */
    font-weight: 600;
    color: rgba(15, 23, 42, 0.45); /* Slate color optimized for white background readability */
    line-height: 1.4;
    max-width: 140px;
    transition: all 0.3s ease;
}

/* Success status badge overlays on the top-right of completed step card */
.status-badge {
    position: absolute;
    top: 8px; /* Tighter layout positioning coordinates */
    right: 8px;
    width: 18px; /* Compact status dot badge */
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.modal-step-card.completed .status-badge {
    opacity: 1;
    transform: scale(1);
}

/* Connecting laser lines layout between the card boxes */
.step-line-wrapper {
    flex: 0 0 32px; /* Pulls individual step boxes closer for tight corporate visuals */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 1px;
}

.step-line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2); /* Slightly darker connector track over white glass */
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.step-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #10b981;
    transition: width 0.8s ease-in-out;
}

/* Glowing laser dot slides along the connector during verification state */
@keyframes laser-flow {
    0% { left: -50%; }
    100% { left: 150%; }
}

.step-line.animating::before {
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.step-line.animating::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #16a4e9, #0283fd, transparent);
    animation: laser-flow 1.1s linear infinite; /* Faster flow animation */
}

.step-line.completed::before {
    width: 100%;
    background: #10b981;
}

/* State highlights - Visual Hierarchy Adjustments */
.modal-step-card.pending {
    opacity: 0.35; /* High-contrast pending opacity */
    filter: grayscale(60%);
    transform: scale(0.96); /* Slightly smaller to push back */
}

@keyframes card-active-pulse {
    0% { 
        background: rgba(255, 255, 255, 0.55); 
        border-color: rgba(2, 131, 253, 0.35); 
        box-shadow: 0 10px 25px rgba(2, 131, 253, 0.05);
    }
    50% { 
        background: rgba(255, 255, 255, 0.88); 
        border-color: rgba(2, 131, 253, 0.8); 
        box-shadow: 0 18px 45px rgba(2, 131, 253, 0.22), 0 0 20px rgba(16, 164, 233, 0.12);
    }
    100% { 
        background: rgba(255, 255, 255, 0.55); 
        border-color: rgba(2, 131, 253, 0.35); 
        box-shadow: 0 10px 25px rgba(2, 131, 253, 0.05);
    }
}

.modal-step-card.active {
    opacity: 1;
    filter: none;
    transform: translateY(-6px) scale(1.03); /* Elevated and scaled up to represent the visual hero focal point */
    border-color: rgba(2, 131, 253, 0.6);
    animation: card-active-pulse 2.5s ease-in-out infinite; /* Slightly faster pulse rhythm */
}

.modal-step-card.active .step-icon-wrapper {
    background: #ffffff;
    border-color: rgba(2, 131, 253, 0.8);
    color: #0283fd;
    box-shadow: 0 0 25px rgba(2, 131, 253, 0.3);
    filter: drop-shadow(0 2px 6px rgba(2, 131, 253, 0.35)); /* Strong drop shadow on active icon */
}

.modal-step-card.active .step-text {
    color: #0f172a;
    font-weight: 700;
}

.modal-step-card.completed {
    opacity: 1; /* Retains active design brightness opacity to keep visual balance */
    filter: none;
    transform: scale(0.98);
    border-color: #10b981; /* Solid success green border for high visual definition */
    background: rgba(255, 255, 255, 0.75); /* Whitish completed card background */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.modal-step-card.completed .step-icon-wrapper {
    background: rgba(16, 185, 129, 0.28); /* Whitish green completed icon background */
    border-color: #10b981; /* Solid green icon outline */
    color: #10b981; 
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.2));
}

.modal-step-card.completed .step-text {
    color: #0f172a; /* Keeps high-contrast readable dark slate text */
    font-weight: 700; /* Keeps bold weight to maintain visual prominence */
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-line {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Glowing Border Effect for Success Verification Transition */
@keyframes border-glow {
    0% {
        box-shadow: 
            0 0 20px rgba(22, 164, 233, 0.2),
            inset 0 0 10px rgba(22, 164, 233, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(2, 131, 253, 0.95),
            0 0 100px rgba(22, 164, 233, 0.7),
            inset 0 0 30px rgba(2, 131, 253, 0.45);
        border-color: #16a4e9;
    }
    100% {
        box-shadow: 
            0 0 20px rgba(22, 164, 233, 0.2),
            inset 0 0 10px rgba(22, 164, 233, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.auth-modal-card.lighting-effect {
    animation: border-glow 0.8s ease-in-out infinite;
}

.auth-footer {
    font-size: 0.72rem;
    color: #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 18px;
    width: 100%;
    box-sizing: border-box;
}

.footer-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.7rem;
    white-space: nowrap;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-item i {
    font-size: 0.82rem;
    color: #003b71;
}

/* Right panel style for Global Network Visualizer */
.visualizer-panel {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Coverage overlay sidebar: Glassmorphic Whitish Card (Matches workspace cards exactly) */
.coverage-sidebar {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.45); /* matched unified glass backing */
    border: 1px solid rgba(255, 255, 255, 0.55); /* matched border */
    border-radius: 24px; /* matched border radius */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    width: 320px;
    /* matches workspace card-inner box shadow */
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        0 15px 35px -5px rgba(0, 0, 0, 0.25),
        0 5px 15px -5px rgba(0, 0, 0, 0.15);
}

.coverage-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coverage-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Active region highlighted in white glass matching card active hover overlays */
.coverage-item.active {
    color: #000000;
    background: rgba(255, 255, 255, 0.55); /* matches --card-bg-hover */
    border-color: rgba(255, 255, 255, 0.85); /* matches --card-border-hover */
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.region-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.region-map-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage-item.active .region-map-icon {
    opacity: 1;
    color: #003b71;
}

.coverage-item.active .region-name {
    color: #000000;
}

.region-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage-item.active .region-status {
    background-color: #003b71;
    box-shadow: 0 0 8px rgba(0, 59, 113, 0.8);
}

/* Accent blue divider bar between header and title */
.title-accent {
    width: 32px;
    height: 5px;
    background: #003b71; /* Accent blue matching active dots */
    border-radius: 10px;
    margin-top: 4px;
    margin-bottom: 0;
}

/* Floating Encryption Status Capsule under the globe */
.encryption-status-floating {
    position: absolute;
    bottom: 36px;
    left: 55%; /* Shifted rightwards under the globe */
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 20px 8px 8px;
    border-radius: 30px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.encryption-status-floating .status-icon-wrapper {
    width: 32px;
    height: 32px;
    background: #003b71;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.encryption-status-floating .status-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.1px;
}

.modal-brandmark {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-brandmark .abrs-logo-text {
    font-family: 'Times New Roman', 'Playfair Display', 'Cinzel', 'Merriweather', 'Georgia', serif !important;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #000000;
    line-height: 1;
}

.modal-brandmark .abrs-logo-divider {
    height: 22px;
    width: 1.5px;
    background: rgba(0, 0, 0, 0.4);
    margin: 0 4px;
}

.modal-brandmark .abrs-logo-tagline {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #1e293b;
    text-transform: none;
    line-height: 1;
}

