#mobile-gate {
    display: none;
}

@media (max-width: 768px), ((max-width: 1024px) and (hover: none) and (pointer: coarse)) {
    #mobile-gate {
        display: flex;
    }

    #root,
    #tenderly-toolbar-content-view-root,
    [id^="give-freely-root"] {
        display: none !important;
    }

    html,
    body {
        overflow: hidden;
        height: 100%;
    }
}

.mobile-gate {
    box-sizing: border-box;
    flex-direction: column;
    z-index: 100000;
    background: #050a14;
    width: 100%;
    min-height: 100dvh;
    padding: 1rem 1.25rem 2rem;
    font-family: Outfit, Sora, sans-serif;
    position: fixed;
    inset: 0;
}

.mobile-gate::before {
    content: "";
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, #2563eb24, #0000 58%);
    position: absolute;
    inset: 0;
}

.mobile-gate-header,
.mobile-gate-main {
    z-index: 1;
    position: relative;
}

.mobile-gate-header {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: #080d18ad;
    border: 1px solid #1f2a42;
    border-radius: 999px;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: .25rem;
    padding: .7rem .85rem;
    display: flex;
}

.mobile-gate-brand {
    color: inherit;
    align-items: center;
    gap: .62rem;
    text-decoration: none;
    display: inline-flex;
}

.mobile-gate-brand-mark {
    border-radius: 50%;
    place-items: center;
    width: 36px;
    height: 36px;
    display: grid;
    overflow: hidden;
}

.mobile-gate-brand-mark img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.mobile-gate-brand-text {
    letter-spacing: -.01em;
    color: #eef5ff;
    font-size: 1.08rem;
    font-weight: 700;
}

.mobile-gate-pill {
    color: #8aa4ca;
    text-transform: uppercase;
    letter-spacing: .14em;
    white-space: nowrap;
    background: #0f172a99;
    border: 1px solid #1f2a42;
    border-radius: 999px;
    align-items: center;
    gap: .45rem;
    padding: .45rem .75rem;
    font-size: .62rem;
    font-weight: 700;
    display: inline-flex;
}

.mobile-gate-pill-dot {
    background: #34d399;
    border-radius: 50%;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
}

.mobile-gate-main {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    max-width: 34rem;
    margin: 0 auto;
    padding: 2rem 0 3rem;
    display: flex;
}

.mobile-gate-eyebrow {
    color: #7fb2ff;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 1rem;
    font-size: .72rem;
    font-weight: 700;
}

.mobile-gate-title {
    color: #eef5ff;
    letter-spacing: -.02em;
    margin: 0;
    font-size: clamp(2rem, 8vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.mobile-gate-copy {
    color: #8aa4ca;
    max-width: 34ch;
    margin: 1.1rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
}

.mobile-gate-back {
    color: #eef5ff;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-bottom: 1px solid #eef5ff66;
    align-self: flex-start;
    margin-top: 2rem;
    padding-bottom: .15rem;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-gate-back:hover {
    color: #7fb2ff;
    border-bottom-color: #7fb2ff99;
}

.mobile-gate--home .mobile-gate-back {
    display: none;
}
