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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1c1c3c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Glass */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all .4s ease;
}

.glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu-md{
    display: none;
}

nav a,
.menu-md a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    opacity: .8;
    transition: .3s;
}

nav a:hover,
.menu-md a:hover {
    opacity: 1
}

.btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: .3s;
}

.login-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.download-btn {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 600;
}

.download-btn:hover {
    transform: scale(1.08)
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero.full {
    min-height: 100vh;
    padding: 40px 20px;
}

.hero.half {
    min-height: 50vh;
    padding: 140px 20px 60px;
}

.hero.h40 {
    min-height: 40vh;
    padding: 120px 20px 60px;
}

.hero p {
    font-size: 20px;
    margin: 15px 0 40px;
    opacity: .85;
    max-width: 900px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #6750A4, #5C3DD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.logo {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(90deg, #6750A4, #5C3DD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1.2s ease forwards;
}

.logo.sm {
    font-size: 72px;
}

.tagline {
    font-size: 48px;
    margin: 20px 0 40px;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.8s;
}

.hero-card {
    width: 800px;
    max-width: 95%;
    padding: 40px;
    animation: fadeIn 1.5s ease forwards 1s;
}

.features-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    font-size: 14px;
}

/* CTA */
.cta {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 600;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: .3s;
}

.cta:hover {
    transform: scale(1.1)
}

.secondary {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    opacity: .8;
    cursor: pointer;
}

/* Marquee */
.marquee {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

/* Sections */
section {
    padding: 100px 10%
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.stat h2 {
    font-size: 48px
}

.counter {
    font-size: 42px;
    font-weight: 700;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.slide {
    display: none
}

.slide.active {
    display: block
}

/* Pricing */
.pricing-card {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    text-align: center;
}

/* Timeline */
.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* ABOUT */
.about-content {
    max-width: 900px;
    margin: auto;
    padding: 50px;
    line-height: 1.8;
    font-size: 18px;
    text-align: center;
}

.step {
    padding: 25px;
    min-width: 200px;
    text-align: center
}

/* Dark Mode */
.toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: .7;
}

/* BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(512px, 100%), 1fr));
    gap: 30px;
    padding: 50px 8%;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 25px;
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.blog-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.blog-card p {
    opacity: .85;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

.blog-card a {
    margin-top: 15px;
    display: inline-block;
    font-weight: 600;
    color: #FFD700;
    text-decoration: none;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* BLOG CONTENT */
.blog-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-content hr {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
}

.blog-content table {
    width: 100%;
}

.blog-content table th, .blog-content table td {
    text-align: start;
}

.blog-content a {
    color: rgb(3, 108, 255);
}

.blog-content img {
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
}

.blog-content h1 {
    margin: 20px 0 10px;
}

.blog-content h2,
h3 {
    color: #FFD700;
    margin: 20px 0 10px;
}

.blog-content p {
    margin: 15px 0;
    opacity: .9;
}

.blog-content ol,
.blog-content ul {
    padding-left: 30px;
}

/* RELATED POSTS */
.related-posts {
    max-width: 900px;
    margin: 50px auto 80px;
    padding: 0 20px;
}

.related-posts h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.related-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.related-card p {
    font-size: 14px;
    opacity: .85;
    flex: 1;
}

.related-card a {
    display: inline-block;
    margin-top: 10px;
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}

.related-card a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, .6)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0)
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

/* Responsive */
@media(max-width:768px) {
    .menu-md {
        display: flex;
    }

    .marquee {
        display: none;
    }

    header {
        position: sticky;
    }

    nav {
        display: none
    }

    .hero h1 {
        font-size: 40px
    }

    .hero p {
        font-size: 18px
    }

    .logo {
        font-size: 42px
    }

    .tagline {
        font-size: 26px
    }

    .hero-card {
        padding: 25px
    }

    .stats {
        gap: 30px
    }

    .glass:hover {
        transform: none;
        box-shadow: none;
    }

    .blog-content {
        margin: 40px 20px;
    }
}