:root{
    --primary:#1e40af;
    --secondary:#3b82f6;
    --accent:#f59e0b;
    --green:#16a34a;

    --text-main:#0f172a;
    --text-muted:#64748b;

    --bg-light:#f8fafc;

    --border:#e2e8f0;
}

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#fff;
    color:var(--text-main);
    line-height:1.6;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.25rem 5%;
    border-bottom:1px solid var(--border);
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:1.5rem;
    font-weight:800;
    color:var(--primary);
    text-decoration:none;
    letter-spacing:-0.03em;
}

.login-btn{
    background:var(--primary);
    color:#fff;
    padding:.75rem 1.6rem;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.login-btn:hover{
    background:#1e3a8a;
}

/* HERO */

.hero{
    padding:80px 5% 100px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:clamp(2.5rem,8vw,3.5rem);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.04em;
    margin-bottom:1rem;
}

.hero p{
    max-width:800px;
    margin:0 auto;
    opacity:.9;
    font-size:1.15rem;
}

/* CTA */

.cta-box,
.cta-btns{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:1rem;
    margin-top:2rem;
}

.btn{
    padding:1rem 2rem;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-main,
.btn-white{
    background:#fff;
    color:var(--primary);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
}

.btn:hover{
    transform:translateY(-2px);
}

/* SECTION */

.section-padding,
.section{
    padding:80px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    font-weight:800;
    color:var(--primary);
    margin-bottom:15px;
}

.section-title p{
    color:var(--text-muted);
}

/* ALTERNATE */

.section-alt{
    background:var(--bg-light);
}

/* GRID */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

/* CARD */

.feature-card,
.policy-card,
.terms-card,
.feature-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:40px;
    transition:.3s;
}

.feature-card:hover,
.feature-box:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.feature-card h3,
.policy-card h3,
.terms-card h3,
.feature-box h3{
    color:var(--primary);
    margin-bottom:1rem;
}

.feature-icon{
    font-size:2rem;
    display:block;
    margin-bottom:1rem;
}

/* STATS */

.stats-bar{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:20px;
    padding:50px 5%;
    text-align:center;
}

.stat-item b{
    display:block;
    font-size:2rem;
    color:var(--primary);
}

.stat-item span{
    color:var(--text-muted);
}

/* STEPS */

.steps{
    display:grid;
    gap:1.5rem;
}

.step{
    display:flex;
    gap:1.5rem;
    align-items:flex-start;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:1.75rem;
}

.step-num{
    min-width:44px;
    height:44px;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.step-body h3{
    margin-bottom:.5rem;
}

.step-body p{
    color:var(--text-muted);
}

/* TWO COLUMN */

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
}

/* FEATURE LIST */

.feature-box ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:.75rem;
}

.feature-box li{
    display:flex;
    gap:.75rem;
    color:var(--text-muted);
}

.feature-box li::before{
    content:"✓";
    color:var(--green);
    font-weight:800;
}

/* WHY */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:1rem;
}

.why-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:1.5rem;
    text-align:center;
}

.why-item .icon{
    font-size:2rem;
    margin-bottom:.5rem;
}

.why-item p{
    color:var(--text-muted);
}

/* BADGES */

.coming-soon{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
}

.badge{
    padding:.5rem 1.2rem;
    border-radius:999px;
    background:#eff6ff;
    border:1px solid #bfdbfe;
    color:var(--primary);
    font-weight:600;
}

/* FOOTER */

footer{
    background:var(--bg-light);
    border-top:1px solid var(--border);
    padding:60px 5% 40px;
    text-align:center;
}

.footer-nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:2rem;
}

.footer-nav a{
    color:var(--text-muted);
    text-decoration:none;
    font-weight:600;
}

.footer-nav a:hover{
    color:var(--primary);
}

.footer-copy{
    color:var(--text-muted);
    font-size:.85rem;
}

.contact-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:1.25rem;
    display:inline-block;
    margin-bottom:20px;
}

.support-link{
    color:var(--primary);
    text-decoration:none;
    font-weight:700;
}

/* LINKS */

a{
    color:inherit;
}

a:hover{
    opacity:.9;
}

/* MOBILE */

@media(max-width:768px){

    nav{
        padding:1rem 5%;
    }

    .hero{
        padding:60px 5%;
    }

    .section,
    .section-padding{
        padding:60px 5%;
    }

    .two-col{
        grid-template-columns:1fr;
    }

    .footer-nav{
        flex-direction:column;
        gap:15px;
    }

    .stats-bar{
        grid-template-columns:1fr 1fr;
    }

    .step{
        flex-direction:column;
    }

    /* FEATURE LIST */

.feature-list{
    list-style:none;
    text-align:left;
    color:var(--text-muted);
    padding-left:20px;
}

.feature-list li{
    margin-bottom:.9rem;
}

/* PORTAL CONTENT */

.portal-content{
    max-width:800px;
    margin:0 auto;
    color:var(--text-muted);
    font-size:1.05rem;
    line-height:1.9;
    text-align:center;
}

.portal-content p{
    margin-bottom:1.5rem;
}

/* SHARE LINKS */

.share-links{
    margin-top:2rem;
    display:flex;
    gap:1rem;
    justify-content:center;
    flex-wrap:wrap;
}

.share-link{
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
    font-size:1rem;
}

.share-link:hover{
    text-decoration:underline;
}
}
