/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-8odbf4xzb3] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-8odbf4xzb3] {
    flex: 1;
}

/* ─────────────────────────────────────────────
   Sidebar
───────────────────────────────────────────── */

.sidebar[b-8odbf4xzb3] {
    background: linear-gradient(172deg, rgba(50, 24, 31, 0.92) 0%, rgba(28, 13, 18, 0.9) 100%);
    border-right: 1px solid rgba(255, 215, 180, 0.14);
    box-shadow: inset -1px 0 0 rgba(255, 215, 180, 0.06), 4px 0 24px rgba(8, 3, 5, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ─────────────────────────────────────────────
   Top Row
───────────────────────────────────────────── */

.top-row[b-8odbf4xzb3] {
    background: linear-gradient(140deg, rgba(255, 242, 226, 0.12) 0%, rgba(255, 242, 226, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 215, 180, 0.12);
    justify-content: flex-end;
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.shell-main[b-8odbf4xzb3] {
    display: flex;
    flex-direction: column;
}

.shell-content[b-8odbf4xzb3] {
    padding-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────
   User Chip
───────────────────────────────────────────── */

.user-chip[b-8odbf4xzb3] {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 180, 0.25);
    background: linear-gradient(130deg, rgba(255, 238, 218, 0.18), rgba(255, 238, 218, 0.06));
    color: #f0d8c0;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

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

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

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

/* ─────────────────────────────────────────────
   Mobile Bottom Navigation
───────────────────────────────────────────── */

.mobile-bottom-nav[b-8odbf4xzb3] {
    display: none;
}

/* ─────────────────────────────────────────────
   Blazor Error UI
───────────────────────────────────────────── */

#blazor-error-ui[b-8odbf4xzb3] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-8odbf4xzb3] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ─────────────────────────────────────────────
   Desktop Layout (≥ 641px)
───────────────────────────────────────────── */

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

    .sidebar[b-8odbf4xzb3] {
        width: 252px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

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

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

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

/* ─────────────────────────────────────────────
   Mobile Layout (≤ 640px)
───────────────────────────────────────────── */

@media (max-width: 640.98px) {
    .top-row[b-8odbf4xzb3] {
        justify-content: space-between;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        min-height: 3.25rem;
    }

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

    .user-chip[b-8odbf4xzb3] {
        display: none;
    }

    /* Hide desktop sidebar on mobile */
    .sidebar[b-8odbf4xzb3] {
        display: none;
    }

    /* Add bottom padding so content doesn't hide behind bottom nav */
    .shell-content[b-8odbf4xzb3] {
        padding-bottom: calc(var(--sb-bottom-nav-h) + 1.25rem + env(safe-area-inset-bottom, 0px));
    }

    /* Show mobile bottom nav */
    .mobile-bottom-nav[b-8odbf4xzb3] {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 500;
        height: calc(var(--sb-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: linear-gradient(135deg, rgba(24, 12, 17, 0.97) 0%, rgba(36, 17, 23, 0.97) 100%);
        border-top: 1px solid rgba(255, 215, 180, 0.14);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        box-shadow: 0 -4px 24px rgba(8, 3, 5, 0.4);
        justify-content: space-around;
        align-items: stretch;
    }

    .mobile-bottom-nav__item[b-8odbf4xzb3] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        padding: 0.5rem 0.25rem;
        color: rgba(190, 160, 130, 0.75);
        text-decoration: none;
        transition: color var(--sb-transition-fast);
        position: relative;
    }

    .mobile-bottom-nav__item[b-8odbf4xzb3]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 2rem;
        height: 2px;
        border-radius: 0 0 2px 2px;
        background: var(--sb-accent-strong);
        transition: transform var(--sb-transition-fast);
    }

    .mobile-bottom-nav__item.active[b-8odbf4xzb3] {
        color: var(--sb-accent-strong);
    }

    .mobile-bottom-nav__item.active[b-8odbf4xzb3]::before {
        transform: translateX(-50%) scaleX(1);
    }

    .mobile-bottom-nav__icon[b-8odbf4xzb3] {
        width: 1.35rem;
        height: 1.35rem;
        flex-shrink: 0;
    }

    .mobile-bottom-nav__label[b-8odbf4xzb3] {
        font-size: 0.64rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ─────────────────────────────────────────────
   Hamburger Toggle (mobile only)
───────────────────────────────────────────── */

.navbar-toggler[b-6b56co9kqe] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: #ffe9cf;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 215, 180, 0.24);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(16, 5, 8, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 218, 195, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.7rem rgba(255, 236, 216, 0.12);
    transition: background-color 160ms ease, transform 160ms ease;
}

.navbar-toggler:checked[b-6b56co9kqe] {
    background-color: rgba(255, 236, 216, 0.22);
}

/* ─────────────────────────────────────────────
   Sidebar Top Row / Brand
───────────────────────────────────────────── */

.top-row[b-6b56co9kqe] {
    min-height: 3.75rem;
    background: linear-gradient(130deg, rgba(255, 228, 196, 0.18) 0%, rgba(50, 22, 32, 0.18) 100%);
    border-bottom: 1px solid rgba(255, 215, 180, 0.14);
    display: flex;
    align-items: center;
}

.navbar-brand[b-6b56co9kqe] {
    font-size: 1.35rem;
    color: #ffecd8;
    letter-spacing: 0.04em;
    padding: 0 0.25rem;
    background: linear-gradient(135deg, #f5c88a 0%, #e0a060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─────────────────────────────────────────────
   Bootstrap Icon Placeholders
───────────────────────────────────────────── */

.bi[b-6b56co9kqe] {
    display: inline-block;
    position: relative;
    width: 1.15rem;
    height: 1.15rem;
    margin-right: 0.7rem;
    top: -1px;
    background-size: cover;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity var(--sb-transition-fast);
}

.bi-house-door-fill-nav-menu[b-6b56co9kqe] {
    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-list-nested-nav-menu[b-6b56co9kqe] {
    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");
}

.bi-person-fill-nav-menu[b-6b56co9kqe] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3C/svg%3E");
}

.bi-calendar-fill-nav-menu[b-6b56co9kqe] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h.5A1.5 1.5 0 0 1 15 2.5v11A1.5 1.5 0 0 1 13.5 15h-11A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1H3V.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-people-fill-nav-menu[b-6b56co9kqe] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-people-fill' viewBox='0 0 16 16'%3E%3Cpath d='M13 7c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM5 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM1 13s0-1 1-1 3 1 3 2H1v-1zm7 1v-1s0-1 1-1 4 1 4 2h-5z'/%3E%3C/svg%3E");
}

.bi-envelope-fill-nav-menu[b-6b56co9kqe] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-envelope-fill' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555z'/%3E%3Cpath d='M0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.143L9.24 8.83 8 9.586 6.761 8.83zM16 4.697l-5.803 3.546L16 11.801V4.697z'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-6b56co9kqe] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.858 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────
   Nav Items
───────────────────────────────────────────── */

.nav-item[b-6b56co9kqe] {
    font-size: 0.9rem;
    padding-bottom: 0.3rem;
}

.nav-item:first-of-type[b-6b56co9kqe] {
    padding-top: 0.75rem;
}

.nav-item:last-of-type[b-6b56co9kqe] {
    padding-bottom: 0.75rem;
}

.nav-item[b-6b56co9kqe]  .nav-link {
    color: rgba(230, 200, 168, 0.72);
    border: 1px solid transparent;
    border-radius: 10px;
    height: 2.85rem;
    display: flex;
    align-items: center;
    line-height: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: color var(--sb-transition-fast), background-color var(--sb-transition-fast), border-color var(--sb-transition-fast);
}

/* Left accent bar for active state */
.nav-item[b-6b56co9kqe]  a.active {
    background: linear-gradient(110deg, rgba(240, 200, 148, 0.22) 0%, rgba(240, 200, 148, 0.07) 100%);
    border-color: rgba(240, 200, 148, 0.28);
    color: #fff3e0;
    box-shadow: 0 8px 20px rgba(10, 4, 7, 0.28);
}

.nav-item[b-6b56co9kqe]  a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(to bottom, var(--sb-accent-strong), var(--sb-accent));
}

.nav-item[b-6b56co9kqe]  a.active .bi {
    opacity: 1;
}

.nav-item[b-6b56co9kqe]  .nav-link:hover {
    background-color: rgba(240, 200, 148, 0.12);
    border-color: rgba(255, 215, 180, 0.18);
    color: #fff0de;
}

.nav-item[b-6b56co9kqe]  .nav-link:hover .bi {
    opacity: 1;
}

.nav-item[b-6b56co9kqe]  .nav-link:focus-visible {
    outline: 2px solid rgba(240, 210, 165, 0.82);
    outline-offset: 2px;
    border-color: rgba(240, 200, 148, 0.42);
    background-color: rgba(240, 200, 148, 0.12);
}

/* ─────────────────────────────────────────────
   Sidebar Scrollable Area
───────────────────────────────────────────── */

.nav-scrollable[b-6b56co9kqe] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-6b56co9kqe] {
    display: block;
}

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

    .nav-scrollable[b-6b56co9kqe] {
        display: block;
        height: calc(100vh - 3.75rem);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(240, 210, 165, 0.25) transparent;
    }

    /* Divider line before last nav group (Settings) */
    .nav-item:last-of-type[b-6b56co9kqe] {
        margin-top: auto;
        border-top: 1px solid rgba(255, 215, 180, 0.08);
        padding-top: 0.5rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-zbfh2cl5ga],
.components-reconnect-repeated-attempt-visible[b-zbfh2cl5ga],
.components-reconnect-failed-visible[b-zbfh2cl5ga],
.components-pause-visible[b-zbfh2cl5ga],
.components-resume-failed-visible[b-zbfh2cl5ga],
.components-rejoining-animation[b-zbfh2cl5ga] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-retrying[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-failed[b-zbfh2cl5ga],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-zbfh2cl5ga] {
    display: block;
}


#components-reconnect-modal[b-zbfh2cl5ga] {
    color: #f7efe5;
    background: linear-gradient(145deg, rgba(255, 241, 224, 0.16), rgba(255, 241, 224, 0.07));
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid rgba(255, 225, 194, 0.3);
    border-radius: 1rem;
    box-shadow: 0 16px 36px rgba(20, 8, 12, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-zbfh2cl5ga 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-zbfh2cl5ga 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-zbfh2cl5ga 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-zbfh2cl5ga]::backdrop {
    background: radial-gradient(circle at 30% 20%, rgba(217, 171, 115, 0.18), transparent 45%), rgba(17, 7, 10, 0.7);
    animation: components-reconnect-modal-fadeInOpacity-b-zbfh2cl5ga 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-zbfh2cl5ga {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-zbfh2cl5ga {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-zbfh2cl5ga {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-zbfh2cl5ga] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-zbfh2cl5ga] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-zbfh2cl5ga] {
    border: 1px solid rgba(255, 225, 194, 0.35);
    background: linear-gradient(130deg, rgba(242, 198, 143, 0.35), rgba(189, 138, 87, 0.22));
    color: #fff5ea;
    padding: 7px 24px;
    border-radius: 999px;
    transition: transform 180ms ease, background-color 180ms ease;
}

#components-reconnect-modal button:hover[b-zbfh2cl5ga] {
    background-color: rgba(242, 198, 143, 0.36);
    transform: translateY(-1px);
}

#components-reconnect-modal button:active[b-zbfh2cl5ga] {
    background-color: rgba(181, 130, 89, 0.42);
}

.components-rejoining-animation[b-zbfh2cl5ga] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-zbfh2cl5ga] {
        position: absolute;
        border: 3px solid rgba(255, 225, 194, 0.8);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-zbfh2cl5ga 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-zbfh2cl5ga] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-zbfh2cl5ga {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/LandingPage.razor.rz.scp.css */
/* ── Reset / base ─────────────────────────── */
:root[b-mdqzgyind7] {
    color-scheme: dark;
}

html[b-mdqzgyind7], body[b-mdqzgyind7] {
    background: #0e0a07;
}

a[b-mdqzgyind7] {
    color: inherit;
    text-decoration: none;
}

[b-mdqzgyind7]::selection {
    background: var(--sb-terra);
    color: #1a0e09;
}

/* ── Shared atoms ─────────────────────────── */
.sb-kicker[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sb-ink-3);
    font-weight: 500;
}

.sb-btn[b-mdqzgyind7] {
    appearance: none;
    border: 1px solid var(--sb-border-2);
    background: var(--sb-elev);
    color: var(--sb-ink);
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
    text-decoration: none;
}

.sb-btn:hover[b-mdqzgyind7] {
    background: var(--sb-elev-2);
    border-color: var(--sb-border-strong);
}

.sb-btn--primary[b-mdqzgyind7] {
    background: var(--sb-terra);
    border-color: var(--sb-terra);
    color: #1a0e09;
    font-weight: 600;
}

.sb-btn--primary:hover[b-mdqzgyind7] {
    background: var(--sb-terra-soft);
    border-color: var(--sb-terra-soft);
}

.sb-btn--ghost[b-mdqzgyind7] {
    background: transparent;
    border-color: transparent;
    color: var(--sb-ink-2);
}

.sb-btn--ghost:hover[b-mdqzgyind7] {
    background: var(--sb-elev);
    color: var(--sb-ink);
}

.sb-btn--sm[b-mdqzgyind7] { padding: 6px 12px; font-size: 12px; }
.sb-btn--lg[b-mdqzgyind7] { padding: 13px 22px; font-size: 14px; }

.sb-dot[b-mdqzgyind7] { width: 6px; height: 6px; border-radius: 999px; display: inline-block; }

.sb-avatar--terra[b-mdqzgyind7] { background: linear-gradient(135deg, #d8917a, #c8765a); }
.sb-avatar--gold[b-mdqzgyind7] { background: linear-gradient(135deg, #e3c89e, #d4b487); }
.sb-avatar--sand[b-mdqzgyind7] { background: linear-gradient(135deg, #cdbba2, #a89274); color: #1a0e09; }

/* ── Page shell ───────────────────────────── */
.page[b-mdqzgyind7] {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Nav ──────────────────────────────────── */
.nav[b-mdqzgyind7] {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(14, 10, 7, 0.72);
    border-bottom: 1px solid var(--sb-border);
}

.nav__inner[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 32px;
    max-width: 1240px;
    margin: 0 auto;
}

.brand[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand__mark[b-mdqzgyind7] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #c8765a 0%, #d4b487 100%);
    display: grid;
    place-items: center;
    color: #1a0e09;
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.brand__name[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-size: 18px;
}

.nav__links[b-mdqzgyind7] {
    display: flex;
    gap: 22px;
    margin-left: 28px;
    font-size: 13px;
    color: var(--sb-ink-2);
}

.nav__links a:hover[b-mdqzgyind7] { color: var(--sb-ink); }

.nav__cta[b-mdqzgyind7] {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ── Hero ─────────────────────────────────── */
.hero[b-mdqzgyind7] {
    position: relative;
    padding: 88px 0 56px;
    overflow: hidden;
}

.hero[b-mdqzgyind7]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 460px at 80% 0%, rgba(200, 118, 90, 0.18), transparent 60%),
        radial-gradient(700px 420px at 0% 100%, rgba(212, 180, 135, 0.10), transparent 60%);
    pointer-events: none;
}

.hero__inner[b-mdqzgyind7] {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero h1[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(44px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 18px 0 22px;
}

.hero h1 em[b-mdqzgyind7] {
    font-style: italic;
    color: var(--sb-gold-soft);
}

.hero p.lede[b-mdqzgyind7] {
    font-size: 17px;
    line-height: 1.55;
    color: var(--sb-ink-2);
    max-width: 520px;
    margin: 0 0 30px;
}

.hero__ctas[b-mdqzgyind7] {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__assurance[b-mdqzgyind7] {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 28px;
    color: var(--sb-ink-3);
    font-size: 12px;
}

.hero__assurance span[b-mdqzgyind7] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.price-chip[b-mdqzgyind7] {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 7px 14px 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(200, 118, 90, 0.5);
    background: rgba(200, 118, 90, 0.12);
    color: var(--sb-ink);
    font-size: 12px;
}

.price-chip strong[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 14px;
    color: #f6cdb6;
}

.price-chip .sep[b-mdqzgyind7] { color: var(--sb-ink-4); }

/* ── Hero stage (3 floating cards) ─────────── */
.stage[b-mdqzgyind7] {
    position: relative;
    height: 560px;
}

.stage__card[b-mdqzgyind7] {
    position: absolute;
    background: var(--sb-panel);
    border: 1px solid var(--sb-border-2);
    border-radius: 18px;
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

/* SMS reminder card */
.stage__sms[b-mdqzgyind7] {
    top: 30px;
    left: 0;
    width: 280px;
    padding: 18px;
    transform: rotate(-3deg);
}

.sms__head[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sb-border);
}

.sms__avatar[b-mdqzgyind7] {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d8917a, #c8765a);
    display: grid;
    place-items: center;
    color: #1a0e09;
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 500;
}

.sms__meta[b-mdqzgyind7] { line-height: 1.2; }
.sms__name[b-mdqzgyind7] { font-size: 13px; font-weight: 600; }
.sms__sub[b-mdqzgyind7] { font-size: 10.5px; color: var(--sb-ink-3); }

.sms__bubble[b-mdqzgyind7] {
    margin-top: 14px;
    padding: 11px 13px;
    background: var(--sb-elev);
    border-radius: 14px 14px 14px 4px;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--sb-ink);
}

.sms__bubble + .sms__bubble[b-mdqzgyind7] { margin-top: 8px; }

.sms__reply[b-mdqzgyind7] {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--sb-terra-soft), var(--sb-terra));
    color: #1a0e09;
    border-radius: 14px 14px 4px 14px;
    align-self: flex-end;
    margin-left: 28px;
}

.sms__time[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 9.5px;
    color: var(--sb-ink-4);
    text-align: center;
    margin: 10px 0 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sms__stat[b-mdqzgyind7] {
    margin-top: 14px;
    padding: 10px 12px;
    background: rgba(136, 184, 148, 0.12);
    border: 1px solid rgba(136, 184, 148, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sms__stat-val[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-size: 22px;
    color: #c5e3cc;
    line-height: 1;
}

.sms__stat-lbl[b-mdqzgyind7] { font-size: 11px; color: #c5e3cc; line-height: 1.25; }

/* Review card */
.stage__rev[b-mdqzgyind7] {
    bottom: 20px;
    left: 110px;
    width: 320px;
    padding: 20px;
    transform: rotate(2deg);
    z-index: 2;
}

.rev__top[b-mdqzgyind7] { display: flex; align-items: center; gap: 10px; }

.rev__google[b-mdqzgyind7] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--sb-elev);
    border: 1px solid var(--sb-border-2);
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--sb-gold-soft);
}

.rev__lbl[b-mdqzgyind7] {
    font-size: 11px;
    color: var(--sb-ink-3);
    font-family: var(--f-mono);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rev__name[b-mdqzgyind7] { font-family: var(--f-display); font-size: 15px; }

.rev__stars[b-mdqzgyind7] {
    display: flex;
    gap: 3px;
    margin: 14px 0 8px;
    color: #f3c060;
    font-size: 22px;
}

.rev__quote[b-mdqzgyind7] {
    font-size: 13px;
    line-height: 1.55;
    color: var(--sb-ink-2);
}

.rev__quote em[b-mdqzgyind7] { font-style: italic; color: var(--sb-ink); }

.rev__metric[b-mdqzgyind7] {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--sb-border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.rev__metric-val[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-size: 24px;
    color: var(--sb-ink);
}

.rev__metric-val em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.rev__metric-lbl[b-mdqzgyind7] { font-size: 11px; color: var(--sb-ink-3); max-width: 140px; text-align: right; }

/* DE server card */
.stage__de[b-mdqzgyind7] {
    top: 0;
    right: 0;
    width: 260px;
    padding: 20px;
    transform: rotate(3deg);
}

.de__head[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.de__pill[b-mdqzgyind7] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(136, 184, 148, 0.14);
    border: 1px solid rgba(136, 184, 148, 0.4);
    font-size: 10.5px;
    color: #c5e3cc;
    font-family: var(--f-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.de__pill .dot[b-mdqzgyind7] {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--sb-success);
    box-shadow: 0 0 0 3px rgba(136, 184, 148, 0.25);
}

.de__map[b-mdqzgyind7] {
    height: 160px;
    border-radius: 12px;
    background:
        repeating-linear-gradient(135deg, rgba(246, 236, 219, 0.04) 0 8px, rgba(246, 236, 219, 0.07) 8px 16px),
        var(--sb-bg-2);
    border: 1px solid var(--sb-border-2);
    position: relative;
    overflow: hidden;
}

.de__map svg[b-mdqzgyind7] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.de__map .pin[b-mdqzgyind7] {
    position: absolute;
    top: 58%;
    left: 46%;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--sb-terra);
    border: 2px solid #1a0e09;
    box-shadow: 0 0 0 6px rgba(200, 118, 90, 0.25), 0 0 0 12px rgba(200, 118, 90, 0.10);
    animation: ping-b-mdqzgyind7 2.8s ease-out infinite;
}

@keyframes ping-b-mdqzgyind7 {
    0% { box-shadow: 0 0 0 0 rgba(200, 118, 90, 0.45), 0 0 0 0 rgba(200, 118, 90, 0.20); }
    70% { box-shadow: 0 0 0 12px rgba(200, 118, 90, 0), 0 0 0 24px rgba(200, 118, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 118, 90, 0), 0 0 0 0 rgba(200, 118, 90, 0); }
}

.de__caption[b-mdqzgyind7] { margin-top: 12px; font-size: 12px; color: var(--sb-ink-2); line-height: 1.4; }
.de__caption strong[b-mdqzgyind7] { color: var(--sb-ink); font-weight: 600; }

.de__certs[b-mdqzgyind7] { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }

.de__cert[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 9.5px;
    color: var(--sb-ink-3);
    padding: 3px 7px;
    border: 1px solid var(--sb-border-2);
    border-radius: 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Trust strip ──────────────────────────── */
.trust[b-mdqzgyind7] {
    margin-top: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--sb-border);
    border-bottom: 1px solid var(--sb-border);
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--sb-ink-3);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.trust span[b-mdqzgyind7] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-dot[b-mdqzgyind7] {
    background: var(--sb-terra);
}

/* ── Section ──────────────────────────────── */
.section[b-mdqzgyind7] {
    padding: 96px 0;
    border-top: 1px solid var(--sb-border);
}

.section--tight[b-mdqzgyind7] { padding: 64px 0; }

.section__head[b-mdqzgyind7] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
    max-width: 720px;
}

.section__head h2[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.015em;
    line-height: 1.05;
    margin: 0;
}

.section__head h2 em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.section__head p[b-mdqzgyind7] {
    color: var(--sb-ink-2);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

/* ── Pillars ──────────────────────────────── */
.pillar[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.pillar:last-child[b-mdqzgyind7] { margin-bottom: 0; }

.pillar--flip[b-mdqzgyind7] { grid-template-columns: 1.05fr 1fr; }
.pillar--flip .pillar__copy[b-mdqzgyind7] { order: 2; }

.pillar__index[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sb-terra-soft);
    margin-bottom: 12px;
}

.pillar h3[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
}

.pillar h3 em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.pillar p.body[b-mdqzgyind7] {
    color: var(--sb-ink-2);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 480px;
}

.pillar__bullets[b-mdqzgyind7] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pillar__bullets li[b-mdqzgyind7] {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--sb-ink);
    line-height: 1.45;
}

.pillar__bullets svg[b-mdqzgyind7] { flex-shrink: 0; margin-top: 3px; color: var(--sb-terra-soft); }
.pillar__bullets li span.sub[b-mdqzgyind7] { display: block; color: var(--sb-ink-3); font-size: 12.5px; margin-top: 2px; }

/* ── Big visual card ──────────────────────── */
.vis[b-mdqzgyind7] {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--sb-border-2);
    background:
        radial-gradient(600px 360px at 80% 10%, rgba(200, 118, 90, 0.10), transparent 60%),
        linear-gradient(180deg, var(--sb-panel), var(--sb-bg-2));
    padding: 36px;
    min-height: 520px;
    overflow: hidden;
    box-shadow: var(--sh-md);
}

/* No-show visual */
.vis-noshow[b-mdqzgyind7] { display: flex; flex-direction: column; gap: 18px; }

.timeline[b-mdqzgyind7] { display: flex; flex-direction: column; gap: 14px; }

.ev[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: 88px 14px 1fr;
    gap: 14px;
    align-items: flex-start;
}

.ev__time[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--sb-ink-3);
    letter-spacing: 0.08em;
    padding-top: 14px;
}

.ev__rail[b-mdqzgyind7] {
    width: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
}

.ev__rail-dot[b-mdqzgyind7] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--sb-terra);
    box-shadow: 0 0 0 4px rgba(200, 118, 90, 0.18);
    flex-shrink: 0;
}

.ev__rail-line[b-mdqzgyind7] {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, var(--sb-terra), var(--sb-border));
    margin-top: 4px;
    min-height: 36px;
}

.ev:last-child .ev__rail-line[b-mdqzgyind7] { display: none; }

.ev__card[b-mdqzgyind7] {
    background: var(--sb-elev);
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    padding: 12px 14px;
}

.ev__title[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sb-ink);
}

.ch[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 5px;
    background: var(--sb-bg-2);
    color: var(--sb-ink-3);
    border: 1px solid var(--sb-border-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ch--yes[b-mdqzgyind7] {
    background: rgba(136, 184, 148, 0.12);
    color: #c5e3cc;
    border-color: rgba(136, 184, 148, 0.4);
}

.ev__body[b-mdqzgyind7] {
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--sb-ink-2);
}

.ev__body code[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 11.5px;
    background: var(--sb-bg-2);
    padding: 1px 5px;
    border-radius: 4px;
    color: var(--sb-gold-soft);
}

.stat-pair[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.stat[b-mdqzgyind7] {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--sb-border-2);
    background: rgba(20, 16, 12, 0.55);
}

.stat__val[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-size: 36px;
    line-height: 1;
    color: var(--sb-ink);
}

.stat__val em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.stat__lbl[b-mdqzgyind7] { font-size: 12px; color: var(--sb-ink-3); margin-top: 6px; line-height: 1.4; }

/* Reviews visual */
.reviews-vis[b-mdqzgyind7] { display: flex; flex-direction: column; gap: 16px; }

.rating-row[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--sb-elev);
    border: 1px solid var(--sb-border-2);
    border-radius: 14px;
}

.rating-row__l[b-mdqzgyind7] { display: flex; align-items: center; gap: 14px; }

.rating-bubble[b-mdqzgyind7] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e3c89e, #d4b487);
    color: #1a0e09;
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-weight: 500;
}

.rating-stars[b-mdqzgyind7] { display: flex; gap: 2px; color: #f3c060; font-size: 18px; }

.rating-arrow[b-mdqzgyind7] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-success);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-bars[b-mdqzgyind7] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--sb-border-2);
    background: rgba(20, 16, 12, 0.55);
}

.bar-row[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--sb-ink-3);
}

.bar-row__star[b-mdqzgyind7] { color: #f3c060; display: flex; align-items: center; gap: 4px; }

.bar-row__track[b-mdqzgyind7] {
    height: 8px;
    background: var(--sb-bg-2);
    border-radius: 999px;
    overflow: hidden;
}

.bar-row__fill[b-mdqzgyind7] {
    height: 100%;
    background: linear-gradient(90deg, var(--sb-terra), var(--sb-gold));
    border-radius: 999px;
}

.bar-row__val[b-mdqzgyind7] { text-align: right; color: var(--sb-ink-2); }

.ask-card[b-mdqzgyind7] {
    padding: 18px;
    background: var(--sb-elev);
    border: 1px solid var(--sb-border-2);
    border-radius: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ask-card__icon[b-mdqzgyind7] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(200, 118, 90, 0.18);
    border: 1px solid rgba(200, 118, 90, 0.4);
    color: #f4cfbf;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.ask-card__body[b-mdqzgyind7] { font-size: 13px; color: var(--sb-ink-2); line-height: 1.5; }
.ask-card__body strong[b-mdqzgyind7] { color: var(--sb-ink); display: block; font-size: 13.5px; margin-bottom: 4px; }

.ask-card__cta[b-mdqzgyind7] {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--sb-terra);
    color: #1a0e09;
    font-size: 12px;
    font-weight: 600;
}

/* DE security visual */
.de-vis[b-mdqzgyind7] { display: flex; flex-direction: column; gap: 18px; }

.de-map-big[b-mdqzgyind7] {
    position: relative;
    height: 280px;
    border-radius: 16px;
    background:
        radial-gradient(400px 240px at 50% 50%, rgba(200, 118, 90, 0.08), transparent 60%),
        repeating-linear-gradient(135deg, rgba(246, 236, 219, 0.03) 0 10px, rgba(246, 236, 219, 0.06) 10px 20px),
        var(--sb-bg-2);
    border: 1px solid var(--sb-border-2);
    overflow: hidden;
}

.de-map-big__svg[b-mdqzgyind7] { position: absolute; inset: 0; width: 100%; height: 100%; }

.de-map-big__pin[b-mdqzgyind7] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--sb-terra);
    transform: translate(-50%, -50%);
    border: 3px solid #1a0e09;
    box-shadow: 0 0 0 8px rgba(200, 118, 90, 0.25), 0 0 0 18px rgba(200, 118, 90, 0.1);
    animation: ping-b-mdqzgyind7 2.8s ease-out infinite;
}

.de-map-big__label[b-mdqzgyind7] {
    position: absolute;
    top: calc(50% + 22px);
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: var(--sb-panel);
    border: 1px solid var(--sb-border-2);
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--sb-ink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cert-grid[b-mdqzgyind7] { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.cert[b-mdqzgyind7] {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--sb-border-2);
    background: var(--sb-elev);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert__mark[b-mdqzgyind7] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--sb-border-2);
    background: var(--sb-bg-2);
    display: grid;
    place-items: center;
    color: var(--sb-gold-soft);
    flex-shrink: 0;
}

.cert__t[b-mdqzgyind7] { font-size: 13px; font-weight: 600; }
.cert__s[b-mdqzgyind7] { font-size: 11px; color: var(--sb-ink-3); margin-top: 2px; }

/* ── Features grid ────────────────────────── */
.features[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature[b-mdqzgyind7] {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--sb-border);
    background: var(--sb-panel);
    transition: transform var(--t-fast), border-color var(--t-fast);
}

.feature:hover[b-mdqzgyind7] {
    border-color: var(--sb-border-strong);
    transform: translateY(-2px);
}

.feature__icon[b-mdqzgyind7] {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--sb-elev);
    border: 1px solid var(--sb-border-2);
    color: var(--sb-terra-soft);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.feature h4[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
}

.feature p[b-mdqzgyind7] { color: var(--sb-ink-3); font-size: 13.5px; line-height: 1.55; margin: 0; }

/* ── Pricing ──────────────────────────────── */
.pricing[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.pricing__card[b-mdqzgyind7] {
    position: relative;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid rgba(200, 118, 90, 0.45);
    background:
        radial-gradient(600px 380px at 100% 0%, rgba(200, 118, 90, 0.18), transparent 60%),
        linear-gradient(170deg, var(--sb-panel) 0%, var(--sb-bg-2) 100%);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

.pricing__badge[b-mdqzgyind7] {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sb-gold-soft);
    padding: 4px 10px;
    border: 1px solid var(--sb-border-strong);
    border-radius: 999px;
}

.pricing__price[b-mdqzgyind7] {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: var(--f-display);
    margin: 20px 0 6px;
}

.pricing__amount[b-mdqzgyind7] { font-size: 96px; line-height: 0.9; letter-spacing: -0.04em; }
.pricing__cur[b-mdqzgyind7] { font-size: 42px; color: var(--sb-ink-2); }

.pricing__per[b-mdqzgyind7] {
    color: var(--sb-ink-3);
    font-size: 14px;
    font-family: var(--f-sans);
    margin-bottom: 24px;
}

.pricing__list[b-mdqzgyind7] {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.pricing__list li[b-mdqzgyind7] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--sb-ink);
}

.pricing__list svg[b-mdqzgyind7] { color: var(--sb-success); flex-shrink: 0; margin-top: 2px; }

.pricing__cta[b-mdqzgyind7] { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.pricing__copy h2[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.pricing__copy h2 em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.pricing__copy p[b-mdqzgyind7] { color: var(--sb-ink-2); font-size: 16px; line-height: 1.55; margin: 0 0 18px; }

.pricing__rows[b-mdqzgyind7] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--sb-border);
    padding-top: 20px;
}

.pricing__row[b-mdqzgyind7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--sb-ink-2);
}

.pricing__row strong[b-mdqzgyind7] { color: var(--sb-ink); font-weight: 500; }

/* ── Testimonials ─────────────────────────── */
.quotes[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quote[b-mdqzgyind7] {
    padding: 26px;
    border-radius: 18px;
    border: 1px solid var(--sb-border);
    background: var(--sb-panel);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote__stars[b-mdqzgyind7] { color: #f3c060; font-size: 16px; letter-spacing: 2px; }

.quote__text[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-size: 20px;
    line-height: 1.35;
    color: var(--sb-ink);
    letter-spacing: -0.005em;
    margin: 0;
    flex: 1;
}

.quote__text em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.quote__who[b-mdqzgyind7] {
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--sb-border);
    padding-top: 16px;
}

.quote__avatar[b-mdqzgyind7] {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-family: var(--f-display);
    font-size: 14px;
    display: grid;
    place-items: center;
    color: #1a0e09;
    flex-shrink: 0;
}

.quote__name[b-mdqzgyind7] { font-size: 13px; font-weight: 600; }
.quote__role[b-mdqzgyind7] { font-size: 11px; color: var(--sb-ink-3); }

/* ── FAQ ──────────────────────────────────── */
.faq[b-mdqzgyind7] {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
}

.faq__title[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 14px 0 18px;
}

.faq__title em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.faq__intro[b-mdqzgyind7] {
    color: var(--sb-ink-2);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 340px;
}

.faq__list[b-mdqzgyind7] {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--sb-border);
}

details.faq__item[b-mdqzgyind7] {
    border-bottom: 1px solid var(--sb-border);
    padding: 22px 0;
}

details.faq__item summary[b-mdqzgyind7] {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--f-display);
    font-size: 19px;
    color: var(--sb-ink);
}

details.faq__item summary[b-mdqzgyind7]::-webkit-details-marker { display: none; }

details.faq__item summary[b-mdqzgyind7]::after {
    content: "+";
    font-family: var(--f-mono);
    font-size: 22px;
    color: var(--sb-ink-3);
    transition: transform var(--t-base);
    flex-shrink: 0;
}

details.faq__item[open] summary[b-mdqzgyind7]::after { content: "−"; color: var(--sb-terra-soft); }

details.faq__item p[b-mdqzgyind7] {
    margin: 12px 0 0;
    color: var(--sb-ink-2);
    font-size: 14px;
    line-height: 1.6;
    max-width: 620px;
}

/* ── Final CTA ────────────────────────────── */
.cta-section[b-mdqzgyind7] { padding: 32px 0 0; }

.final[b-mdqzgyind7] {
    margin: 0 0 96px;
    padding: 64px;
    border-radius: 28px;
    border: 1px solid rgba(200, 118, 90, 0.35);
    background:
        radial-gradient(700px 360px at 90% 0%, rgba(200, 118, 90, 0.20), transparent 60%),
        radial-gradient(600px 360px at 0% 100%, rgba(212, 180, 135, 0.10), transparent 60%),
        linear-gradient(170deg, var(--sb-panel), var(--sb-bg-2));
    position: relative;
    overflow: hidden;
}

.final__h2[b-mdqzgyind7] {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 14px 0 18px;
    max-width: 720px;
}

.final__h2 em[b-mdqzgyind7] { font-style: italic; color: var(--sb-gold-soft); }

.final p[b-mdqzgyind7] {
    color: var(--sb-ink-2);
    font-size: 16px;
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 28px;
}

.final__row[b-mdqzgyind7] { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.final__row small[b-mdqzgyind7] {
    margin-left: 10px;
    color: var(--sb-ink-3);
    font-size: 12px;
}

/* ── Footer ───────────────────────────────── */
.foot[b-mdqzgyind7] {
    padding: 40px 0 56px;
    border-top: 1px solid var(--sb-border);
    color: var(--sb-ink-3);
    font-size: 12.5px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
}

.foot h5[b-mdqzgyind7] {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sb-ink-4);
    margin: 0 0 14px;
}

.foot ul[b-mdqzgyind7] { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot a:hover[b-mdqzgyind7] { color: var(--sb-ink); }

.foot__tagline[b-mdqzgyind7] {
    margin: 14px 0 0;
    color: var(--sb-ink-3);
    max-width: 280px;
    line-height: 1.55;
}

.foot__legal[b-mdqzgyind7] {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid var(--sb-border);
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sb-ink-4);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 980px) {
    .hero__inner[b-mdqzgyind7], .pillar[b-mdqzgyind7], .pillar--flip[b-mdqzgyind7], .pricing[b-mdqzgyind7], .faq[b-mdqzgyind7] {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pillar--flip .pillar__copy[b-mdqzgyind7] { order: 0; }
    .features[b-mdqzgyind7], .quotes[b-mdqzgyind7] { grid-template-columns: 1fr; }
    .stage[b-mdqzgyind7] { height: 600px; max-width: 420px; margin: 0 auto; }
    .nav__links[b-mdqzgyind7] { display: none; }
    .final[b-mdqzgyind7] { padding: 36px; }
    .foot[b-mdqzgyind7] { grid-template-columns: 1fr 1fr; }
}
