* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #060816;
    color: #fff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.logo span {
    color: #7c5cff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #7c5cff;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 92, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.badge {
    background: rgba(124, 92, 255, 0.2);
    color: #b9a9ff;
    padding: 10px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #7c5cff;
}

.hero p {
    color: #c8c8d0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 18px;
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card h3 {
    color: #00d4ff;
    margin-bottom: 5px;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
}

.glass-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    backdrop-filter: blur(10px);
}

.features,
.article-section,
.cta {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title.left {
    text-align: left;
}

.section-title span {
    color: #7c5cff;
    font-weight: 600;
}

.section-title h2 {
    font-size: 46px;
    margin-top: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #7c5cff;
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: #c8c8d0;
}

.article-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-content p,
.article-content li {
    color: #d4d4de;
    margin-bottom: 18px;
}

.article-content h3 {
    margin: 35px 0 20px;
    color: #fff;
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.link-card {
    background: rgba(124, 92, 255, 0.12);
    border: 1px solid rgba(124, 92, 255, 0.2);
    padding: 30px;
    border-radius: 22px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
}

.link-card p {
    margin-top: 10px;
}

.cta-box {
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    padding: 70px;
    border-radius: 30px;
    text-align: center;
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 30px;
}

.footer {
    background: #02040d;
    padding-top: 70px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer h4,
.footer h3 {
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    color: #c8c8d0;
}

.footer a:hover {
    color: #7c5cff;
}

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9b9baa;
}

@media(max-width: 768px) {

    .hero h1 {
        font-size: 42px;
    }

    .section-title h2,
    .cta-box h2 {
        font-size: 32px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-wrapper,
    .cta-box {
        padding: 35px 25px;
    }
}