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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 15%, rgba(128, 50, 255, 0.25), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(0, 140, 255, 0.25), transparent 40%),
        #050509;

    color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* BACKGROUND GLOW */

.bg-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: -1;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-1 {
    background: #8b4dff;
    top: -100px;
    left: -100px;
}

.glow-2 {
    background: #008cff;
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

/* NAVBAR */

nav {
    width: calc(100% - 40px);
    max-width: 1100px;
    margin: 20px auto;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    position: sticky;
    top: 20px;
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 4px;
}

nav a {
    color: #bdbdbd;
    text-decoration: none;
    transition: 0.25s ease;
}

nav a:hover {
    color: white;
}

/* MAIN */

main {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
}

/* HERO */

.hero {
    min-height: 80vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.badge {
    margin-bottom: 20px;
    padding: 9px 15px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    color: #bdbdbd;
    font-size: 13px;
}

h1 {
    font-size: clamp(55px, 10vw, 105px);
    line-height: 0.95;
    letter-spacing: -4px;
}

h1 span {
    background: linear-gradient(
        90deg,
        #c06cff,
        #765cff,
        #41cfff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 700px;
    margin-top: 25px;

    color: #a0a0aa;
    font-size: 17px;
    line-height: 1.7;
}

/* BUTTONS */

.buttons {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.buttons a {
    padding: 14px 22px;
    border-radius: 14px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.25s ease;
}

.main-btn {
    color: white;

    background: linear-gradient(
        135deg,
        #8c4cff,
        #267dff
    );

    box-shadow: 0 10px 35px rgba(93, 65, 255, 0.35);
}

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

.secondary-btn {
    color: white;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-4px);
}

/* FEATURES */

.features {
    padding: 70px 0;
}

.features h2 {
    margin-bottom: 35px;

    text-align: center;
    font-size: 45px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    padding: 25px;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.3);

    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(151, 98, 255, 0.45);
}

.icon {
    font-size: 30px;
}

.card h3 {
    margin-top: 16px;
    margin-bottom: 10px;

    font-size: 21px;
}

.card p {
    color: #9999a5;
    font-size: 14px;
    line-height: 1.6;
}

/* CATEGORIES */

.categories {
    padding: 50px 0;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.categories div {
    padding: 11px 18px;

    color: #b0b0b8;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: 0.25s ease;
}

.categories div:hover {
    color: white;
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}

/* BUY BOX */

.buy-box {
    max-width: 700px;
    margin: 70px auto 120px;
    padding: 50px 30px;

    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(130, 67, 255, 0.12),
        rgba(0, 135, 255, 0.08)
    );

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.price {
    font-size: 65px;
    font-weight: 900;

    background: linear-gradient(
        90deg,
        #c173ff,
        #59a9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.buy-box h2 {
    margin: 10px 0;

    font-size: 35px;
}

.buy-box > p:not(.price) {
    margin-bottom: 25px;
    color: #a1a1aa;
}

.buy-box a {
    display: inline-block;

    padding: 14px 25px;

    background: white;
    color: black;

    text-decoration: none;
    font-weight: 800;

    border-radius: 14px;

    transition: 0.25s ease;
}

.buy-box a:hover {
    transform: scale(1.05);
}

.buy