*{
    box-sizing:border-box;
}

body {

    margin:0;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    radial-gradient(
        circle at top,
        #14213d 0%,
        #050816 60%
    );

    color:#fff;

    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.gigr-box {

    text-align:center;

    width:100%;

    max-width:760px;

    padding:40px;
}

.gigr-logo {

    font-size:120px;

    font-weight:800;

    letter-spacing:-8px;

    line-height:1;
}

.gigr-logo span {

    color:#f97316;
}

h1 {

    margin-top:20px;

    font-size:52px;

    line-height:1.1;
}

.subtext {

    margin-top:16px;

    color:#cbd5e1;

    font-size:24px;
}

.signup {

    margin-top:40px;

    display:flex;

    gap:12px;

    justify-content:center;

    flex-wrap:wrap;
}

.signup input {

    width:320px;

    max-width:100%;

    padding:16px;

    border:none;

    border-radius:14px;

    font-size:16px;
}

.signup button {

    padding:16px 24px;

    border:none;

    border-radius:14px;

    background:#f97316;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;
}

.waiting {

    margin-top:30px;

    color:#94a3b8;
}

.success {

    margin-top:20px;

    color:#4ade80;
}

@media(max-width:768px){

    .gigr-logo{
        font-size:82px;
    }

    h1{
        font-size:36px;
    }

    .subtext{
        font-size:20px;
    }

    .signup{
        flex-direction:column;
    }

    .signup input{
        width:100%;
    }

    .signup button{
        width:100%;
    }
}
.gigr-shortcode-box {

    max-width:720px;

    margin:auto;

    padding:60px 30px;

    text-align:center;
}

.gigr-shortcode-logo {

    width:220px;

    max-width:100%;

    margin-bottom:30px;
}

.gigr-shortcode-box h2 {

    font-size:48px;

    margin-bottom:16px;
}

.gigr-shortcode-subtext {

    color:#cbd5e1;

    font-size:22px;

    margin-bottom:30px;
}

.gigr-shortcode-form {

    display:flex;

    gap:12px;

    justify-content:center;

    flex-wrap:wrap;
}

.gigr-shortcode-form input {

    width:320px;

    padding:16px;

    border:none;

    border-radius:14px;

    font-size:16px;
}

.gigr-shortcode-form button {

    padding:16px 24px;

    border:none;

    border-radius:14px;

    background:#f97316;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;
}

.gigr-shortcode-count {

    margin-top:24px;

    color:#94a3b8;
}

.gigr-count-inline,
.gigr-live-inline {

    font-weight:600;
}
body.gigr-landing-active {

    margin:0 !important;

    overflow-x:hidden;
}

body.gigr-landing-active header,
body.gigr-landing-active footer,
body.gigr-landing-active .site-header,
body.gigr-landing-active .site-footer,
body.gigr-landing-active #masthead,
body.gigr-landing-active #colophon,
body.gigr-landing-active .wp-site-blocks > header,
body.gigr-landing-active .wp-site-blocks > footer {

    display:none !important;
}

body.gigr-landing-active .wp-site-blocks {

    padding-top:0 !important;
}

.gigr-main-logo {

    width:280px;

    max-width:90%;

    margin-bottom:40px;
}
.gigr-install {

    position:fixed;

    left:50%;
    bottom:24px;

    transform:
    translateX(-50%)
    translateY(20px);

    opacity:0;

    border:none;

    background:#f97316;

    color:#fff;

    padding:16px 26px;

    border-radius:999px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(0,0,0,.35);

    transition:
    all .35s ease;
}

.gigr-install.visible {

    opacity:1;

    transform:
    translateX(-50%)
    translateY(0);
}

.gigr-install:hover {

    transform:
    translateX(-50%)
    translateY(-2px);
}

.gigr-ios-tip {

    position:fixed;

    left:50%;
    top:20px;

    transform:
    translateX(-50%)
    translateY(-10px);

    opacity:0;

    background:
    rgba(15,23,42,.92);

    color:#fff;

    padding:14px 18px;

    border-radius:14px;

    font-size:14px;

    backdrop-filter:blur(12px);

    z-index:9999;

    transition:
    all .35s ease;

    width:
    calc(100% - 32px);

    max-width:420px;

    text-align:center;
}

.gigr-ios-tip.visible {

    opacity:1;

    transform:
    translateX(-50%)
    translateY(0);
}