/* =========================================================
   IQT3ST — LUSHU TEST INFORMATION PAGE
   New Dark Navy / Cyan Design
   ========================================================= */

:root{
    --navy-950:#020817;
    --navy-900:#061226;
    --navy-800:#0a1b36;

    --cyan:#16bff3;
    --cyan-bright:#42d9ff;

    --silver:#eef4fa;
    --silver-muted:#aebdcc;

    --text:#f5f8fc;
    --text-muted:#9eafc3;

    --line:rgba(255,255,255,.10);

    --shadow:0 25px 80px rgba(0,0,0,.45);
}


/* =========================================================
   RESET
   ========================================================= */

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:'Inter',Arial,sans-serif;
    color:var(--text);

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(22,191,243,.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 85%,
            rgba(8,127,189,.10),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-900) 52%,
            #030c1d
        );

    overflow-x:hidden;
}


/* =========================================================
   BACKGROUND GRID
   ========================================================= */

body:before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.35;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:44px 44px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


/* =========================================================
   LINKS
   ========================================================= */

a{
    color:inherit;
    text-decoration:none;
}

a:hover{
    color:var(--cyan-bright);
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.content{
    width:100%;
    min-height:100vh;

    padding:110px 20px 70px;

    position:relative;
}


/* =========================================================
   MAIN CARD
   ========================================================= */

.card{
    position:relative;

    width:min(1000px,100%);
    margin:0 auto;

    padding:50px 55px;

    background:
        linear-gradient(
            145deg,
            rgba(13,32,59,.94),
            rgba(4,15,31,.94)
        );

    border:1px solid rgba(126,165,202,.18);
    border-radius:22px;

    box-shadow:var(--shadow);

    overflow:hidden;
}


/* Cyan accent at top */

.card:before{
    content:"";

    position:absolute;

    top:0;
    left:10%;
    right:10%;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    box-shadow:
        0 0 18px rgba(22,191,243,.35);
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.card h1{
    margin:0 0 8px;

    font-family:
        'Playfair Display',
        Georgia,
        serif;

    font-size:
        clamp(3rem,6vw,5rem);

    line-height:1;

    letter-spacing:-.025em;

    background:
        linear-gradient(
            100deg,
            #fff 15%,
            #b9d0e7 50%,
            #4ad9ff 90%
        );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
}


/* =========================================================
   TEST SUBTITLE
   ========================================================= */

.card h3{
    margin:0 0 32px;

    color:var(--cyan-bright);

    font-size:1rem;
    font-weight:600;

    line-height:1.6;

    letter-spacing:.03em;
}


/* =========================================================
   INTRODUCTORY TEXT
   ========================================================= */

.card p{
    max-width:850px;

    margin-bottom:20px;

    color:var(--text-muted);

    font-size:.98rem;
    line-height:1.85;
}


/* Strong text */

.card p strong{
    color:var(--silver);
    font-weight:600;
}


/* =========================================================
   TEST QUICK FACTS
   ========================================================= */

/*
   Your existing <p><strong>20 items</strong></p>
   and <p><strong>25 minutes</strong></p>
   remain compatible with this styling.
*/

.card p:has(strong){
    color:var(--text-muted);
}


/* =========================================================
   LOGIN / BEGIN AREA
   ========================================================= */

form{
    width:100%;
    max-width:430px;

    margin:35px 0 25px;

    padding:28px;

    background:
        rgba(1,9,21,.48);

    border:1px solid rgba(148,174,201,.14);

    border-radius:14px;
}


/* Form fields */

.form-group{
    margin-bottom:16px;
}

.form-control{
    width:100%;
    height:52px;

    padding:0 16px;

    border:1px solid rgba(148,174,201,.18);
    border-radius:10px;

    outline:none;

    background:
        rgba(1,9,21,.65);

    color:#fff;

    font-family:'Inter',Arial,sans-serif;
    font-size:.94rem;

    transition:
        border-color .2s,
        box-shadow .2s,
        background .2s;
}


.form-control::placeholder{
    color:#708197;
}


.form-control:focus{
    border-color:
        rgba(66,217,255,.65);

    background:
        rgba(2,14,29,.9);

    color:#fff;

    box-shadow:
        0 0 0 3px
        rgba(22,191,243,.08);
}


/* =========================================================
   BEGIN BUTTON
   ========================================================= */

button{
    min-width:125px;

    height:50px;

    padding:0 25px;

    border:0;
    border-radius:10px;

    cursor:pointer;

    background:
        linear-gradient(
            100deg,
            #078dcb,
            #18c5f5
        );

    color:#02111f;

    font-family:'Inter',Arial,sans-serif;

    font-size:.82rem;
    font-weight:800;

    letter-spacing:.13em;
    text-transform:uppercase;

    box-shadow:
        0 10px 30px
        rgba(22,191,243,.18);

    transition:
        transform .2s,
        box-shadow .2s,
        filter .2s;
}


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

    filter:brightness(1.06);

    box-shadow:
        0 14px 35px
        rgba(22,191,243,.28);
}


button:active{
    transform:translateY(0);
}


/* =========================================================
   BEGIN / SIGN UP ALIGNMENT
   ========================================================= */

#right{
    text-align:right;

    margin-top:20px;
}


#right a{
    color:var(--cyan-bright);

    font-weight:600;
}


#right a:hover{
    text-decoration:underline;
}


/* Button inside link */

#right a button{
    color:#02111f;

    text-decoration:none;
}


/* =========================================================
   PSYCHOMETRIC INFORMATION
   ========================================================= */

.card > p strong{
    color:var(--silver);
}


/* =========================================================
   NORMING TABLE
   ========================================================= */

.table{
    width:100% !important;

    margin-top:30px;
    margin-bottom:10px;

    border-collapse:separate;
    border-spacing:0;

    color:var(--text) !important;

    background:
        rgba(1,9,21,.38);

    border:1px solid rgba(148,174,201,.14);

    border-radius:14px;

    overflow:hidden;
}


/* Table cells */

.table th,
.table td{
    padding:13px 18px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    color:var(--text) !important;

    font-size:.9rem;
}


/* Header */

.table th{
    background:
        rgba(22,191,243,.09);

    color:var(--cyan-bright) !important;

    font-weight:700;

    letter-spacing:.04em;
}


/* Last row */

.table tr:last-child td{
    border-bottom:0;
}


/* Alternating rows */

.table tbody tr:nth-child(even),
.table tr:nth-child(even){
    background:
        rgba(255,255,255,.025);
}


/* Row hover */

.table tbody tr:hover,
.table tr:hover{
    background:
        rgba(22,191,243,.055);
}


/* =========================================================
   TABLE IQ COLUMN
   ========================================================= */

.table td:last-child{
    color:#dff7ff !important;

    font-weight:600;
}


/* =========================================================
   FOOTER
   ========================================================= */

#footer{
    width:100%;

    padding:25px 20px 30px;

    text-align:center;

    color:#66798f;

    font-size:.72rem;

    letter-spacing:.04em;
}


#footer h6{
    margin:0;

    color:#66798f;

    font-size:.72rem;
    font-weight:400;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection{
    background:
        rgba(22,191,243,.25);

    color:#fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:850px){

    .content{
        padding:
            95px
            15px
            55px;
    }

    .card{
        padding:
            40px
            30px;
    }

    .card h1{
        font-size:3.5rem;
    }

    .card h3{
        font-size:.95rem;
    }

    .card p{
        font-size:.94rem;
        line-height:1.75;
    }

    form{
        max-width:100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:500px){

    .content{
        padding:
            85px
            12px
            45px;
    }

    .card{
        padding:
            32px
            20px;

        border-radius:18px;
    }

    .card h1{
        font-size:2.8rem;
    }

    .card h3{
        margin-bottom:25px;

        font-size:.88rem;
    }

    .card p{
        font-size:.9rem;
    }

    form{
        padding:22px 18px;
    }

    #right{
        text-align:center;
    }

    .table{
        font-size:.82rem;
    }

    .table th,
    .table td{
        padding:
            10px 8px;

        font-size:.8rem;
    }

    #footer{
        padding-top:20px;
    }

}