:root{
    --bg:#05060b;
    --panel:#0d1020;
    --panel2:#141a33;
    --text:#f8f9ff;
    --muted:#aab2d5;
    --border:rgba(255,255,255,.12);
    --blue:#4da3ff;
    --purple:#935cff;
    --gold:#f7c948;
    --green:#36e58d;
    --red:#ff5f7a;
    --shadow:0 24px 90px rgba(0,0,0,.35);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body{
    font-family:Inter,Segoe UI,Arial,sans-serif;
    background:
        radial-gradient(circle at 0 0, rgba(77,163,255,.20), transparent 30%),
        radial-gradient(circle at 100% 0, rgba(147,92,255,.20), transparent 35%),
        var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

a{text-decoration:none;color:inherit}

.container{width:min(1180px,92%);margin:auto}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid var(--border);
    background:rgba(5,6,11,.75);
    backdrop-filter:blur(18px);
}

.nav{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
    font-size:18px;
}

.brand-mark{
    width:44px;
    height:44px;
    border-radius:15px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--gold),#fff1ab);
    color:#111;
    font-weight:1000;
    box-shadow:0 0 35px rgba(247,201,72,.25);
}

.nav-links{display:flex;gap:22px}

.nav-links a{
    color:var(--muted);
    font-weight:700;
    transition:.2s;
}

.nav-links a:hover{color:white}

.nav-actions{display:flex;gap:10px}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:13px 18px;
    border-radius:14px;
    border:1px solid var(--border);
    font-weight:800;
    cursor:pointer;
    transition:.25s;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
    border:0;
    background:linear-gradient(135deg,var(--blue),var(--purple));
    color:white;
}

.btn-gold{
    border:0;
    background:linear-gradient(135deg,var(--gold),#fff1a8);
    color:#111;
}

.btn-soft{
    background:rgba(255,255,255,.06);
    color:white;
}

.full-btn{width:100%}

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    border-radius:999px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.06);
    color:#e6edff;
    font-weight:800;
    font-size:14px;
}

.hero{padding:90px 0 70px}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:36px;
    align-items:center;
}

.hero h1,
.page-hero h1{
    font-size:clamp(42px,6vw,78px);
    line-height:.98;
    letter-spacing:-3px;
    margin:20px 0;
}

.hero h1 span{
    background:linear-gradient(135deg,#fff,var(--gold),var(--blue),var(--purple));
    -webkit-background-clip:text;
    color:transparent;
}

.hero p,
.page-hero p,
.card p,
.about-card p,
.pricing-card p{
    color:var(--muted);
    line-height:1.7;
}

.hero-content p{font-size:20px}

.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:30px 0;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.hero-stats div,
.score-box div{
    padding:16px;
    border-radius:18px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.05);
}

.hero-stats strong,
.score-box b{
    display:block;
    font-size:28px;
}

.hero-stats small,
.score-box span{
    color:var(--muted);
    font-weight:700;
}

.hero-card,
.card,
.about-card,
.pricing-card,
.auth-box,
.contact-form-box,
.contact-info{
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow);
}

.hero-card{padding:24px}
.hero-card h3{margin-bottom:10px}

input,
select,
textarea{
    width:100%;
    margin-bottom:14px;
    padding:15px 16px;
    border-radius:14px;
    border:1px solid var(--border);
    background:rgba(0,0,0,.28);
    color:white;
    outline:none;
}

textarea{
    min-height:140px;
    resize:vertical;
}

.score-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:16px;
}

.section{padding:75px 0}

.section-head{margin-bottom:28px}

.section-head h2,
.cta h2{
    font-size:clamp(30px,4vw,52px);
    margin:14px 0 8px;
    letter-spacing:-2px;
}

.cards{display:grid;gap:18px}
.cards.two{grid-template-columns:repeat(2,1fr)}
.cards.four{grid-template-columns:repeat(4,1fr)}

.card{padding:24px}
.small-card{min-height:240px}

.icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--blue),var(--purple));
    font-size:24px;
    margin-bottom:14px;
}

.card h3,
.about-card h3,
.pricing-card h3{margin-bottom:10px}

.card-link{
    color:var(--gold);
    font-weight:900;
}

.dark-section{
    background:rgba(255,255,255,.02);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.cta{
    text-align:center;
    padding:40px;
}

.page-hero{padding:85px 0 40px}
.center{text-align:center}

.pricing-grid,
.about-grid,
.contact-grid{
    display:grid;
    gap:20px;
}

.pricing-grid{grid-template-columns:repeat(4,1fr)}
.about-grid{grid-template-columns:repeat(2,1fr)}
.contact-grid{grid-template-columns:1fr 1fr}

.pricing-card,
.about-card{
    padding:24px;
    position:relative;
}

.pricing-card.featured{border-color:rgba(247,201,72,.5)}

.popular-tag{
    position:absolute;
    top:15px;
    right:15px;
    background:var(--gold);
    color:#111;
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.price{
    font-size:42px;
    font-weight:1000;
    margin:16px 0;
}

.price span{
    font-size:14px;
    color:var(--muted);
}

.credits-box{
    margin:18px 0;
    padding:12px;
    border-radius:14px;
    background:rgba(247,201,72,.12);
    color:var(--gold);
    font-weight:900;
}

.feature-list{
    list-style:none;
    margin:18px 0;
}

.feature-list li{
    margin:10px 0;
    color:#dfe6ff;
}

.auth-section{
    min-height:80vh;
    display:grid;
    place-items:center;
    padding:50px 20px;
}

.auth-box{
    width:min(480px,100%);
    padding:28px;
}

.register-box{width:min(720px,100%)}

.auth-head{
    text-align:center;
    margin-bottom:24px;
}

.auth-head h1{font-size:52px}

.auth-footer{
    margin-top:18px;
    display:flex;
    justify-content:center;
    gap:10px;
    color:var(--muted);
}

.auth-footer a{
    color:var(--gold);
    font-weight:900;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
}

.contact-info,
.contact-form-box{padding:28px}

.info-box{
    margin-top:18px;
    padding:16px;
    border-radius:16px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.04);
}

.info-box strong{
    display:block;
    margin-bottom:5px;
}

.alert{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:16px;
    font-weight:800;
}

.alert.error{
    background:rgba(255,95,122,.14);
    border:1px solid rgba(255,95,122,.35);
    color:#ffb9c5;
}

.alert.success{
    background:rgba(54,229,141,.14);
    border:1px solid rgba(54,229,141,.35);
    color:#b8ffd7;
}

.footer{
    margin-top:60px;
    border-top:1px solid var(--border);
    padding:45px 0 25px;
    background:rgba(0,0,0,.15);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:24px;
}

.footer-brand{margin-bottom:15px}
.footer h4{margin-bottom:14px}

.footer a{
    display:block;
    margin:9px 0;
    color:var(--muted);
}

.footer-bottom{
    margin-top:28px;
    border-top:1px solid var(--border);
    padding-top:18px;
    color:var(--muted);
}

.bg-orb{
    position:fixed;
    width:320px;
    height:320px;
    border-radius:50%;
    filter:blur(70px);
    opacity:.22;
    z-index:-1;
}

.orb-one{
    left:-120px;
    top:120px;
    background:var(--blue);
}

.orb-two{
    right:-120px;
    top:260px;
    background:var(--purple);
}