body{
    margin:0;
    font-family:'Inter', sans-serif;
    background:#faf6ef;
    overflow-x:hidden;
    color:#111827;
}

/* HERO BACKGROUND */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(250,246,239,1) 0%,
            rgba(250,246,239,.35) 45%,
            rgba(0,0,0,.25) 100%
        ),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    z-index:-2;
}

.overlay{
    min-height:100vh;
    padding-bottom:40px;
}

/* HEADER */
.header{
    text-align:center;
    padding:120px 20px 30px;
}

.header h1{
    font-family:'Archivo Black', sans-serif;
    font-size:clamp(2.2rem, 5vw, 4.5rem);
    margin:0;
    line-height:1;
    text-transform:uppercase;
    background:linear-gradient(
        135deg,
        #00e5ff 0%,
        #00ff99 50%,
        #ffb300 100%
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.header p{
    font-size:1.1rem;
    color:#ffffff;
    max-width:700px;
    margin:20px auto 0;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* FEATURE PILLS */
.features{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    padding:0 20px;
    margin-bottom:30px;
}

.feature{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(14px);
    padding:16px 24px;
    border-radius:18px;
    font-weight:800;
    color:#111827;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    border:1px solid rgba(255,255,255,.35);
}

/* FORM WRAPPER */
.container{
    display:flex;
    justify-content:center;
    padding:20px;
}

/* MAIN CARD */
.form-card{
    width:100%;
    max-width:760px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.35);
    border-radius:28px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.form-card h2{
    text-align:center;
    margin:0 0 30px;
    font-family:'Archivo Black', sans-serif;
    text-transform:uppercase;
    font-size:2rem;
    color:#111827;
}

/* FORM */
label{
    display:block;
    margin-top:16px;
    font-weight:800;
    color:#111827;
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:.04em;
}

input,
textarea{
    width:100%;
    padding:15px 18px;
    margin-top:8px;
    border:2px solid rgba(17, 24, 39, .22);
    border-radius:14px;
    background:rgba(255,255,255,.95);
    color:#111827;
    font-size:15px;
    box-sizing:border-box;
    box-shadow:
        0 8px 20px rgba(0,0,0,.12),
        inset 0 0 0 1px rgba(0,0,0,.06);
    transition:all .25s ease;
}

input:focus,
textarea:focus{
    outline:none;
    transform:translateY(-1px);
    border-color:rgba(0, 229, 255, .55);
    box-shadow:
        0 0 0 3px rgba(6,182,212,.18),
        0 12px 30px rgba(0,229,255,.15);
}
textarea{
    min-height:130px;
    resize:vertical;
}

/* BUTTON */
button{
    width:100%;
    margin-top:28px;
    padding:18px;
    border:none;
    border-radius:16px;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    background:linear-gradient(
        135deg,
        #00e5ff 0%,
        #00ff99 50%,
        #ffb300 100%
    );
    color:black;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 12px 28px rgba(0,0,0,.15);
}

button:hover{
    transform:translateY(-2px) scale(1.01);
}

/* MOBILE */
@media (max-width:768px){

    .header{
        padding:95px 16px 24px;
    }

    .form-card{
        padding:24px;
        border-radius:20px;
    }

    .feature{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .form-card h2{
        font-size:1.5rem;
    }
}