:root{

    --pfl-text:#111111;
    --pfl-muted:#6b7280;
    --pfl-border:#dddddd;
    --pfl-bg:#ffffff;
    --pfl-black:#111111;
    --pfl-radius:18px;

}

*{

    box-sizing:border-box;

}

html,
body{

    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
    overflow-x:hidden;

    background:#ffffff;

    font-family:
        Manrope,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

}

/* ==========================================================
   Dölj WordPress
========================================================== */

.site-header,
.site-footer,
.entry-header,
.wp-block-template-part,
.wp-block-post-title,
.wp-site-blocks > header,
.wp-site-blocks > footer{

    display:none !important;

}

.wp-site-blocks,
.wp-block-group,
.entry-content{

    margin:0 !important;
    padding:0 !important;

}

/* ==========================================================
   Landing
========================================================== */

.pfl-wrapper{

    width:100%;
    min-height:100vh;

    display:flex;

    justify-content:center;
    align-items:flex-start;

    padding:10vh 25px 40px;

    background:
        radial-gradient(
            circle at center,
            rgba(255,102,0,.035) 0%,
            rgba(255,255,255,0) 55%
        );

}

.pfl-inner{

    width:100%;
    max-width:760px;

    text-align:center;

    animation:pflFade .45s ease;

}

/* ==========================================================
   Logo
========================================================== */

.pfl-logo{

    display:block;

    width:270px;
    max-width:90%;

    margin:0 auto 38px;

}

/* ==========================================================
   Rubrik
========================================================== */

.pfl-inner h1{

    margin:0;

    color:var(--pfl-text);

    font-size:62px;

    font-weight:800;

    line-height:1.02;

    letter-spacing:-2px;

}

/* ==========================================================
   Tagline
========================================================== */

.pfl-tagline{

    margin-top:18px;

    color:#222;

    font-size:25px;

    font-weight:600;

}

/* ==========================================================
   Beskrivning
========================================================== */

.pfl-description{

    max-width:620px;

    margin:34px auto 42px;

    color:var(--pfl-muted);

    font-size:20px;

    line-height:1.75;

}

/* ==========================================================
   Form Wrapper
========================================================== */

.pfl-form-wrapper{

    position:relative;

    width:100%;

    min-height:150px;

}

/* ==========================================================
   Formulär
========================================================== */

.pfl-input-group{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

}

.pfl-input-group input{

    flex:1;

    max-width:470px;

    height:64px;

    border:1px solid var(--pfl-border);

    border-radius:18px;

    background:#fff;

    padding:0 24px;

    font-size:19px;

    transition:.25s;

}

.pfl-input-group input:focus{

    outline:none;

    border-color:#1d4ed8;

    box-shadow:0 0 0 5px rgba(29,78,216,.10);

}

.pfl-input-group button{

    height:64px;

    min-width:120px;

    border:none;

    border-radius:18px;

    background:#111;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.pfl-input-group button:hover{

    background:#222;

    transform:translateY(-2px);

}

.pfl-input-group button:disabled{

    opacity:.6;

    cursor:default;

    transform:none;

}

/* ==========================================================
   Success
========================================================== */

.pfl-success-box{

    display:none;

    text-align:center;

    animation:pflFade .25s ease;

}

.pfl-check{

    color:#22c55e;

    font-size:46px;

    line-height:1;

    font-weight:700;

    margin-bottom:14px;

}

.pfl-success-box h3{

    margin:0 0 10px;

    color:#111;

    font-size:30px;

    font-weight:800;

    letter-spacing:-.5px;

}

.pfl-success-box p{

    margin:0;

    color:#6b7280;

    font-size:18px;

    line-height:1.6;

}

/* ==========================================================
   Felmeddelande
========================================================== */

.pfl-message{

    display:none;

    margin-top:22px;

    padding:16px 22px;

    border-radius:16px;

    font-size:16px;

}

.pfl-error{

    background:#fff2f2;

    color:#b91c1c;

    border:1px solid #fecaca;

}

/* ==========================================================
   Footer-text
========================================================== */

.pfl-note{

    margin-top:30px;

    color:#999;

    font-size:15px;

}

/* ==========================================================
   Animation
========================================================== */

@keyframes pflFade{

    from{

        opacity:0;
        transform:translateY(12px);

    }

    to{

        opacity:1;
        transform:none;

    }

}

/* ==========================================================
   Mobil
========================================================== */

@media (max-width:768px){

    .pfl-wrapper{

        padding:60px 22px;

    }

    .pfl-logo{

        width:220px;

        margin-bottom:30px;

    }

    .pfl-inner h1{

        font-size:42px;

        letter-spacing:-1px;

    }

    .pfl-tagline{

        font-size:22px;

    }

    .pfl-description{

        font-size:17px;

        margin-bottom:35px;

    }

    .pfl-form-wrapper{

        min-height:165px;

    }

    .pfl-input-group{

        flex-direction:column;

        gap:12px;

    }

    .pfl-input-group input{

        width:100%;
        max-width:none;

        height:60px;

    }

    .pfl-input-group button{

        width:100%;
        height:60px;

    }

    .pfl-check{

        font-size:40px;

    }

    .pfl-success-box h3{

        font-size:26px;

    }

    .pfl-success-box p{

        font-size:17px;

    }

}