/* ==========================================================
   CellScope
   Public Phone Intelligence
   styles.css
========================================================== */

:root{

    --bg:#070b12;
    --panel:#101827;
    --panel2:#182233;

    --border:rgba(255,255,255,.08);

    --text:#ffffff;
    --muted:#9ca8ba;

    --accent:#4da3ff;
    --accent2:#66d1ff;

    --radius:22px;

    --shadow:
        0 20px 60px rgba(0,0,0,.45);

    --transition:.25s ease;

}

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

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);

    color:var(--text);

    font-family:Inter,sans-serif;

    min-height:100vh;

    overflow-x:hidden;

}

/* ==========================================================
   Background
========================================================== */

.bg{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-1;

}

.blur{

    position:absolute;

    width:550px;
    height:550px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.22;

}

.blur1{

    background:#4da3ff;

    top:-120px;
    left:-120px;

}

.blur2{

    background:#5d5bff;

    bottom:-200px;
    right:-120px;

}

/* ==========================================================
   Header
========================================================== */

header{

    width:min(1200px,92%);

    margin:auto;

    padding:28px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:16px;

}

.logo-icon{

    width:56px;
    height:56px;

    display:grid;
    place-items:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--accent),
        var(--accent2)
    );

    font-size:28px;

    box-shadow:0 0 35px rgba(77,163,255,.35);

}

.logo h1{

    font-size:28px;

    font-weight:800;

}

.logo p{

    color:var(--muted);

    margin-top:4px;

}

/* ==========================================================
   Hero
========================================================== */

.hero{

    width:min(900px,92%);

    margin:70px auto 40px;

    text-align:center;

}

.hero h2{

    font-size:clamp(42px,6vw,68px);

    line-height:1.05;

    margin-bottom:20px;

    font-weight:800;

}

.hero p{

    color:var(--muted);

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}

/* ==========================================================
   Search
========================================================== */

.search{

    margin-top:42px;

    display:flex;

    gap:16px;

}

.search input{

    flex:1;

    height:64px;

    border:none;

    outline:none;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    color:white;

    padding:0 24px;

    font-size:18px;

    transition:var(--transition);

}

.search input::placeholder{

    color:#7c8798;

}

.search input:focus{

    border-color:var(--accent);

    box-shadow:
        0 0 0 5px rgba(77,163,255,.14);

}

.search button{

    width:170px;

    border:none;

    cursor:pointer;

    border-radius:18px;

    font-size:17px;

    font-weight:700;

    color:white;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent2)
        );

    transition:var(--transition);

}

.search button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 18px 35px rgba(77,163,255,.35);

}

/* ==========================================================
   Example Buttons
========================================================== */

.examples{

    margin-top:26px;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

    align-items:center;

}

.examples span{

    color:var(--muted);

}

.example{

    background:rgba(255,255,255,.05);

    color:white;

    border:1px solid var(--border);

    border-radius:999px;

    padding:11px 18px;

    cursor:pointer;

    transition:var(--transition);

}

.example:hover{

    border-color:var(--accent);

    background:rgba(77,163,255,.12);

}

/* ==========================================================
   Results
========================================================== */

#results{

    width:min(1200px,94%);

    margin:60px auto;

}

.hidden{

    display:none;

}

.grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:24px;

}

.card{

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:26px;

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-4px);

    border-color:rgba(77,163,255,.4);

}

.card h3{

    font-size:20px;

    margin-bottom:22px;

}

/* ==========================================================
   Rows
========================================================== */

.rows{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:12px 0;

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

}

.row:last-child{

    border-bottom:none;

}

.row span{

    color:var(--muted);

}

.row strong{

    text-align:right;

    font-weight:600;

    color:white;

    word-break:break-word;

}

/* ==========================================================
   Footer
========================================================== */

footer{

    width:min(1200px,92%);

    margin:70px auto 30px;

    text-align:center;

    color:var(--muted);

    font-size:14px;

}

/* ==========================================================
   Scrollbar
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#09101b;

}

::-webkit-scrollbar-thumb{

    background:#28456d;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#4da3ff;

}

/* ==========================================================
   Mobile
========================================================== */

@media (max-width:700px){

.hero{

    margin-top:40px;

}

.search{

    flex-direction:column;

}

.search button{

    width:100%;

    height:60px;

}

.logo{

    justify-content:center;

    text-align:center;

}

.logo h1{

    font-size:24px;

}

.logo p{

    font-size:14px;

}

}
