/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-3ztgfknqa0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3ztgfknqa0] {
    flex: 1;
}

.sidebar[b-3ztgfknqa0] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3ztgfknqa0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3ztgfknqa0]  a, .top-row[b-3ztgfknqa0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3ztgfknqa0]  a:hover, .top-row[b-3ztgfknqa0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3ztgfknqa0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3ztgfknqa0] {
        justify-content: space-between;
    }

    .top-row[b-3ztgfknqa0]  a, .top-row[b-3ztgfknqa0]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-3ztgfknqa0] {
        flex-direction: row;
    }

    .sidebar[b-3ztgfknqa0] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3ztgfknqa0] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3ztgfknqa0]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3ztgfknqa0], article[b-3ztgfknqa0] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

:root[b-3ztgfknqa0] {
    --gold: #D4AF37;
    --bg: #f8faff;
    --white: #ffffff;
    --shadow: #dbe2ef;
    --lab-border: #e2e8f0;
}



/* Header / lab-nav styles used by layout */
.lab-nav[b-3ztgfknqa0] {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 1.5rem;
    border-bottom:1px solid var(--lab-border);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
}

.lab-nav .nav-left[b-3ztgfknqa0] { display:flex; gap:0.75rem; align-items:center; }
.lab-nav .nav-right[b-3ztgfknqa0] { display:flex; gap:0.75rem; align-items:center; }

.core-text[b-3ztgfknqa0] { font-weight:800; letter-spacing:2px; }
.gold-highlight[b-3ztgfknqa0] { color:var(--gold); }

.status-tag[b-3ztgfknqa0] { font-family: 'IBM Plex Mono', monospace; font-size:0.75rem; background:#f1f5f9; padding:4px 8px; border-radius:6px; color:#64748b; }

.blink[b-3ztgfknqa0] { color:#22c55e; animation: blink-b-3ztgfknqa0 1s infinite; }
@keyframes blink-b-3ztgfknqa0 { 50% { opacity:0; } }

/* Neuromorphic signup button */
.signup-btn[b-3ztgfknqa0] {
    background: var(--bg);
    border-radius: 14px;
    padding: 0.45rem 0.85rem;
    border: none;
    cursor: pointer;
    box-shadow: 8px 8px 18px var(--shadow), -8px -8px 18px var(--white);
    font-weight:700;
}

.signup-btn:hover[b-3ztgfknqa0] { transform: translateY(-2px); color: var(--gold); }

/* small outline button used nearby */
.btn-outline[b-3ztgfknqa0] {
    background: transparent;
    border: 1px solid rgba(255, 223, 100, 1);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    color: rgba(184, 134, 11, 1);
}

/* The dim/blur background that covers everything */
.signup-overlay[b-3ztgfknqa0] {
    position: fixed; /* Stays in place even if you scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(240, 242, 245, 0.7); /* Match your --bg-color but semi-transparent */
    backdrop-filter: blur(1px); /* The "Glass" effect */
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
    z-index: 9999; /* Ensure it is above the circuit wires and everything else */
    animation: fadeIn-b-3ztgfknqa0 0.3s ease-out;
}

/* The actual Neumorphic box */
.contact-panel[b-3ztgfknqa0] {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #f0f2f5; /*var(--bg-color);*/
    padding: 40px;
    border-radius: 40px;
    /* Strong Neumorphic shadows to make it pop off the blurred background */
    box-shadow: 20px 20px 60px var(--soft-shadow), -20px -20px 60px var(--white-glow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

/* Close button positioning */
.close-btn[b-3ztgfknqa0] {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

    .close-btn:hover[b-3ztgfknqa0] {
        color: #aa771c; /* Gold hover */
    }

/* Entry Animation */
@keyframes fadeIn-b-3ztgfknqa0 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-form[b-3ztgfknqa0] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group[b-3ztgfknqa0] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

    .input-group label[b-3ztgfknqa0] {
        font-size: 0.7rem;
        font-weight: 700;
        color: #888;
        letter-spacing: 1px;
        margin-left: 10px;
    }

/* Neumorphic Inset Inputs */
.neu-input[b-3ztgfknqa0] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 12px;
    background: var(--bg-color);
    box-shadow: inset 4px 4px 8px var(--soft-shadow), inset -4px -4px 8px var(--white-glow);
    color: #444;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

    .neu-input:focus[b-3ztgfknqa0] {
        box-shadow: inset 2px 2px 4px var(--soft-shadow), inset -2px -2px 4px var(--white-glow);
        border: 1px solid rgba(184, 134, 11, 0.2);
    }

/* Base Copy Button Style */
.copy-btn[b-3ztgfknqa0] {
    border: none;
    background: var(--bg-color);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 5px 5px 10px var(--soft-shadow), -5px -5px 10px var(--white-glow);
    cursor: pointer;
    color: #aa771c; /* Original Gold */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    /* The Green Tick Success State */
    .copy-btn.active-success[b-3ztgfknqa0] {
        /* "Pressed" Inset Look */
        box-shadow: inset 4px 4px 8px var(--soft-shadow), inset -4px -4px 8px var(--white-glow);
        color: #28a745 !important; /* Green */
        transform: scale(0.95);
    }

        .copy-btn.active-success i[b-3ztgfknqa0] {
            /* Slight glow effect on the green tick */
            filter: drop-shadow(0 0 5px rgba(40, 167, 69, 0.4));
        }

/* Wording refinement */
.neu-label[b-3ztgfknqa0] {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #9aa;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* 1. The Container */
.reveal-wrapper[b-3ztgfknqa0] {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 30px; /* Constrain height for smooth swap */
    flex-grow: 1;
}

/* 2. The Alchemy Mask (Visible by default) */
.alchemy-mask[b-3ztgfknqa0] {
    position: absolute;
    left: 0;
    font-family: 'Noto Sans Symbols 2', sans-serif !important;
    font-size: 1.4rem;
    letter-spacing: 5px;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
    /* Thin Gold Shimmer */
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px var(--bg-color);
    animation: shimmer-move-b-3ztgfknqa0 4s linear infinite;
}

/* 3. The Real Email (Hidden by default) */
.email-text-real[b-3ztgfknqa0] {
    position: absolute;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #444;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px); /* Starts below */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4. THE HOVER LOGIC */
.reveal-container:hover .alchemy-mask[b-3ztgfknqa0] {
    opacity: 0;
    transform: translateY(-20px); /* Slides up and away */
    filter: blur(5px);
}

.reveal-container:hover .email-text-real[b-3ztgfknqa0] {
    opacity: 1;
    transform: translateY(0); /* Slides into place */
}

/* 5. Neumorphic Box refinement */
.data-reveal-box[b-3ztgfknqa0] {
    cursor: help; /* Signals that interaction is needed */
    min-width: 320px;
    background: var(--bg-color);
    padding: 15px 25px;
    border-radius: 18px;
    box-shadow: inset 8px 8px 16px var(--soft-shadow), inset -8px -8px 16px var(--white-glow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.reveal-container:hover[b-3ztgfknqa0] {
    box-shadow: inset 4px 4px 8px var(--soft-shadow), inset -4px -4px 8px var(--white-glow);
}

/* Ensure the text looks seamless to a human */
.revealed-text[b-3ztgfknqa0] {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* X Link Styling */
.neu-input-link[b-3ztgfknqa0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background: var(--bg-color);
    padding: 18px 25px;
    border-radius: 18px;
    box-shadow: 8px 8px 16px var(--soft-shadow), -8px -8px 16px var(--white-glow);
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .neu-input-link:hover[b-3ztgfknqa0] {
        transform: translateY(-3px);
        color: #000; /* X Brand Color */
        box-shadow: 12px 12px 24px var(--soft-shadow), -12px -12px 24px var(--white-glow);
    }

.privacy-notice[b-3ztgfknqa0] {
    margin-top: 35px;
    font-size: 0.65rem;
    color: #9aa;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Shimmer Animation */
@keyframes shimmer-move-b-3ztgfknqa0 {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* The Button Class */
.btn-gold-shimmer[b-3ztgfknqa0] {
    /* Base Gold Gradient */
    background: linear-gradient( 90deg, #bf953f 0%, #fcf6ba 45%, #ffffff 50%, #fcf6ba 55%, #bf953f 100% );
    background-size: 300% 100%; /* Make gradient wide so it can slide */
    /* Animation */
    animation: shimmer-move-b-3ztgfknqa0 24s infinite linear;
    /* Neumorphic Shadow (Outer) */
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3), 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Layout & Text */
    border: none;
    border-radius: 15px;
    color: #3d2b08; /* Dark brown/gold text for readability */
    font-weight: 700;
    padding: 15px 40px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 3s, box-shadow 3s;
    outline: none;
}


    /* Pressed state: Neumorphic Inset */
    .btn-gold-shimmer:active[b-3ztgfknqa0] {
        transform: translateY(1px);
        box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
    }

    /* Disabled state */
    .btn-gold-shimmer:disabled[b-3ztgfknqa0] {
        background: #d1d9e6;
        color: #999;
        animation: none;
        cursor: not-allowed;
        box-shadow: none;
    }





.lab-footer[b-3ztgfknqa0] {

/*    background: var(--bg-color);*/
    text-align: center;
    position: relative;
    /* Inset shadow at the top to give a "floor" feel */
/*    box-shadow: inset 0 20px 40px var(--soft-shadow);*/
}

.footer-cta[b-3ztgfknqa0] {

}

.footer-data-grid[b-3ztgfknqa0] {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

/* Neumorphic Data Badge */
.data-badge-neu[b-3ztgfknqa0] {
    background: var(--bg-color);
    padding: 12px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    box-shadow: 6px 6px 12px var(--soft-shadow), -6px -6px 12px var(--white-glow);
    border: 1px solid rgba(255,255,255,0.5);
}

.badge-label[b-3ztgfknqa0] {
    font-size: 0.6rem;
    font-weight: 800;
    color: #aa771c; /* Gold */
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.badge-value[b-3ztgfknqa0] {
    font-size: 0.85rem;
    color: #556;
    font-weight: 600;
}

.footer-bottom[b-3ztgfknqa0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gold-line-small[b-3ztgfknqa0] {
    width: 30px;
    height: 2px;
    background: var(--gold-metallic);
    border-radius: 2px;
    margin-bottom: 10px;
}

.legal-text[b-3ztgfknqa0] {
    color: #889;
    font-size: 0.75rem;
    line-height: 1.6;
}

.footer-nav[b-3ztgfknqa0] {
    margin-top: 10px;
}

.footer-link[b-3ztgfknqa0] {
    color: #aa771c;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}

    .footer-link:hover[b-3ztgfknqa0] {
        opacity: 0.7;
    }



/* Navigation Container */
.lab-nav[b-3ztgfknqa0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Slim Neumorphic Nav Buttons */
.neu-nav-btn[b-3ztgfknqa0] {
    position: relative;
    background: var(--bg-color);
    border: none;
    border-radius: 10px;
    height: 38px;
    padding: 0 15px;
    min-width: 100px;
    margin: 0 5px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 4px 4px 8px var(--soft-shadow), -4px -4px 8px var(--white-glow);
/*    transition: all 0.3s ease;*/
}


/* The Label Stack */
.nav-label-stack[b-3ztgfknqa0] {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Nav Symbols */
.neu-nav-btn .alch-label[b-3ztgfknqa0] {
    position: absolute;
    font-family: 'Noto Sans Symbols 2', sans-serif !important;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Real Text */
.neu-nav-btn[b-3ztgfknqa0]  {
    position: ;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    opacity: 1;
    /*    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
    /*transition: transform 0.3s ease;*/
}



/* Special Case for the Contact Button */
.nav-contact[b-3ztgfknqa0] {
    margin-left: 20px;
    height: 40px;
    padding: 0 25px;
    font-size: 0.75rem;
}

/* Strip all default anchor styling */
a[b-3ztgfknqa0], a:hover[b-3ztgfknqa0], a:focus[b-3ztgfknqa0], a:active[b-3ztgfknqa0] {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Removes blue color, uses parent text color */
    outline: none; /* Removes the focus box */
    background: none;
}

.nav-logo[b-3ztgfknqa0] {
    position: relative;
    padding-bottom: 4px;
}

    /* Create a gold "wire" that grows from the center on hover */
    .nav-logo[b-3ztgfknqa0]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background: var(--gold-metallic);
        transition: width 0.4s ease, left 0.4s ease;
    }

    .nav-logo:hover[b-3ztgfknqa0]::after {
        width: 100%;
        left: 0;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-2b6dzwadi8] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-2b6dzwadi8] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-2b6dzwadi8] {
    font-size: 1.1rem;
}

.bi[b-2b6dzwadi8] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-2b6dzwadi8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-2b6dzwadi8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-2b6dzwadi8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-2b6dzwadi8] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-2b6dzwadi8] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-2b6dzwadi8] {
        padding-bottom: 1rem;
    }

    .nav-item[b-2b6dzwadi8]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-2b6dzwadi8]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-2b6dzwadi8]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-2b6dzwadi8] {
        display: none;
    }

    .collapse[b-2b6dzwadi8] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-2b6dzwadi8] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
