@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #070609;
    color: #ffffff;

    font-family: 'Inter', sans-serif;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   BACKGROUND
========================= */

.background-glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(140px);

    opacity: 0.12;

    pointer-events: none;

    z-index: -1;
}


.glow-one {
    background: #8b5cf6;

    top: -200px;
    left: -150px;
}


.glow-two {
    background: #c084fc;

    right: -200px;
    bottom: 0;
}



/* =========================
   NAVIGATION
========================= */

.navbar {
    width: 100%;
    height: 82px;

    padding: 0 7%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.07);

    background: rgba(7,6,9,0.75);

    backdrop-filter: blur(20px);

    position: fixed;

    top: 0;
    left: 0;

    z-index: 100;
}


.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 2px;
}


.logo > span:last-child > span {
    color: #a855f7;
}


.logo-symbol {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #a855f7;

    color: #a855f7;

    font-weight: 900;
}


nav {
    display: flex;

    gap: 35px;
}


nav a {
    color: #999;

    font-size: 13px;

    font-weight: 600;

    transition: 0.2s;
}


nav a:hover {
    color: #fff;
}


.nav-button {
    padding: 11px 18px;

    border: 1px solid rgba(168,85,247,0.5);

    background: rgba(168,85,247,0.08);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    transition: 0.25s;
}


.nav-button:hover {
    background: #a855f7;

    border-color: #a855f7;
}



/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    padding: 150px 7% 80px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    position: relative;
}


.hero-content {
    max-width: 760px;
}


.status {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    border: 1px solid rgba(168,85,247,0.25);

    background: rgba(168,85,247,0.05);

    color: #b98afc;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.status-dot {
    width: 7px;
    height: 7px;

    background: #a855f7;

    border-radius: 50%;

    box-shadow: 0 0 12px #a855f7;
}


.hero h1 {
    margin-top: 25px;

    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -5px;
}


.hero h1 span {
    display: block;

    color: #a855f7;
}


.hero p {
    max-width: 580px;

    margin-top: 30px;

    color: #96939c;

    line-height: 1.8;

    font-size: 16px;
}


.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}


.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 15px 23px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.25s;
}


.primary-button {
    background: #a855f7;

    color: #fff;

    box-shadow:
        0 0 30px rgba(168,85,247,0.15);
}


.primary-button:hover {
    background: #9333ea;

    transform: translateY(-2px);
}


.secondary-button {
    border: 1px solid rgba(255,255,255,0.12);

    color: #aaa;
}


.secondary-button:hover {
    border-color: rgba(255,255,255,0.3);

    color: #fff;
}


.hero-moth {
    width: 300px;
    height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 5%;

    border: 1px solid rgba(168,85,247,0.15);

    transform: rotate(45deg);
}


.moth-symbol {
    font-size: 130px;

    transform: rotate(-45deg);

    color: #a855f7;

    font-weight: 900;

    animation: float 4s ease-in-out infinite;
}


@keyframes float {

    0%, 100% {
        transform:
            rotate(-45deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-45deg)
            translateY(-15px);
    }

}



/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 130px 7%;
}


.section-label {
    color: #a855f7;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading {
    margin-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 50px;
}


.section-heading h2 {
    font-size: clamp(40px, 5vw, 70px);

    line-height: 0.95;

    letter-spacing: -3px;

    font-weight: 900;
}


.section-heading h2 span {
    color: #a855f7;
}


.section-heading p {
    max-width: 430px;

    color: #85818b;

    line-height: 1.8;

    font-size: 14px;
}



/* =========================
   SHOP
========================= */

.shop-section {
    padding-top: 100px;
}


.pricing-grid {
    margin-top: 65px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.pricing-card {
    position: relative;

    padding: 35px;

    background: #0a090d;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}


.pricing-card:hover {
    transform: translateY(-7px);

    border-color: rgba(168,85,247,0.4);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.3);
}


.pricing-card.featured {
    border-color: rgba(168,85,247,0.5);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(168,85,247,0.12),
            transparent 45%
        ),
        #0a090d;
}


.pricing-card.lifetime {
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(168,85,247,0.08),
            transparent 45%
        ),
        #0a090d;
}


.popular {
    position: absolute;

    top: 0;
    right: 0;

    padding: 8px 13px;

    background: #a855f7;

    color: white;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.pricing-top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


.pricing-number {
    color: #a855f7;

    font-size: 10px;

    font-weight: 900;
}


.pricing-tag {
    padding: 5px 8px;

    border: 1px solid rgba(255,255,255,0.08);

    color: #777;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


.pricing-card h3 {
    margin-top: 40px;

    font-size: 25px;

    letter-spacing: -1px;
}


.pricing-description {
    min-height: 48px;

    margin-top: 12px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


.price {
    margin-top: 30px;

    font-size: 52px;

    font-weight: 900;

    letter-spacing: -3px;
}


.currency {
    color: #a855f7;

    font-size: 25px;

    vertical-align: top;

    position: relative;

    top: 8px;
}


.price small {
    color: #666;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0;

    margin-left: 4px;
}


.divider {
    height: 1px;

    margin: 30px 0;

    background: rgba(255,255,255,0.07);
}


.pricing-card ul {
    list-style: none;
}


.pricing-card li {
    margin-bottom: 13px;

    color: #999;

    font-size: 11px;
}


.buy-button {
    width: 100%;

    margin-top: 25px;

    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: rgba(168,85,247,0.08);

    border: 1px solid rgba(168,85,247,0.3);

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.25s;
}


.buy-button:hover {
    background: #a855f7;

    border-color: #a855f7;
}



/* =========================
   ABOUT
========================= */

.about-grid {
    margin-top: 55px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;
}


.about-grid h2 {
    font-size: clamp(50px, 7vw, 90px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 900;
}


.about-grid h2 span {
    color: #a855f7;
}


.about-text {
    max-width: 500px;
}


.about-text p {
    margin-bottom: 25px;

    color: #85818b;

    font-size: 15px;

    line-height: 1.9;
}



/* =========================
   TEAM
========================= */

.creators-section {
    padding-top: 100px;
}


.team-grid {
    margin-top: 55px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.team-card {
    padding: 28px;

    display: flex;

    align-items: center;

    gap: 20px;

    background: #0a090d;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}


.team-card:hover {
    transform: translateY(-5px);

    border-color: rgba(168,85,247,0.4);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.25);
}


.team-avatar {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(168,85,247,0.18),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(168,85,247,0.35);

    color: #a855f7;

    font-size: 24px;

    font-weight: 900;

    box-shadow:
        inset 0 0 25px rgba(168,85,247,0.05);
}


.team-info {
    min-width: 0;
}


.team-role {
    display: block;

    color: #a855f7;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.team-info h3 {
    margin-top: 5px;

    color: #fff;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.team-info p {
    margin-top: 5px;

    color: #777;

    font-size: 11px;
}


/* KILUA FEATURED */

.featured-team {
    border-color: rgba(168,85,247,0.35);

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(168,85,247,0.10),
            transparent 55%
        ),
        #0a090d;
}


.featured-team .team-avatar {
    background: #a855f7;

    color: #ffffff;

    border-color: #a855f7;

    box-shadow:
        0 0 30px rgba(168,85,247,0.2);
}



/* =========================
   FAQ
========================= */

.faq-section {
    padding-top: 70px;
}


.faq-list {
    margin-top: 55px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.faq-list details {
    border-bottom:
        1px solid rgba(255,255,255,0.08);
}


.faq-list summary {
    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    list-style: none;

    color: #ddd;

    font-size: 14px;

    font-weight: 700;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary span {
    color: #a855f7;

    font-size: 20px;

    transition: 0.2s;
}


.faq-list details[open]
summary span {
    transform: rotate(45deg);
}


.faq-list details p {
    max-width: 700px;

    padding: 0 0 25px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}



/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 160px 7%;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.06);
}


.final-moth {
    font-size: 70px;

    color: #a855f7;

    font-weight: 900;

    margin-bottom: 20px;
}


.final-cta h2 {
    margin-top: 15px;

    font-size: clamp(55px, 8vw, 100px);

    line-height: 0.9;

    letter-spacing: -5px;
}


.final-cta h2 span {
    color: #a855f7;
}


.final-cta p {
    margin: 20px 0 30px;

    color: #777;
}



/* =========================
   FOOTER
========================= */

footer {
    padding: 30px 7%;

    border-top:
        1px solid rgba(255,255,255,0.07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #555;

    font-size: 10px;
}


.footer-logo {
    color: #aaa;

    font-weight: 900;

    letter-spacing: 1px;
}


.footer-logo .logo-symbol {
    display: inline-flex;

    width: 25px;
    height: 25px;

    margin-right: 5px;

    font-size: 9px;
}


.footer-links {
    display: flex;

    gap: 20px;
}


.footer-links a:hover {
    color: #a855f7;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .navbar {
        padding: 0 5%;
    }


    nav {
        display: none;
    }


    .hero {
        padding:
            140px 6% 80px;

        display: block;
    }


    .hero h1 {
        letter-spacing: -3px;
    }


    .hero-moth {
        display: none;
    }


    .section {
        padding: 90px 6%;
    }


    .section-heading {
        display: block;
    }


    .section-heading p {
        margin-top: 25px;
    }


    .pricing-grid {
        grid-template-columns: 1fr;
    }


    .pricing-card {
        padding: 30px;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .team-grid {
        grid-template-columns: 1fr;
    }


    .community-box {
        padding: 40px 25px;

        display: block;
    }


    footer {
        display: block;

        text-align: center;
    }


    .footer-links {
        justify-content: center;

        margin-top: 15px;
    }

}


@media (max-width: 500px) {

    .hero-buttons {
        flex-direction: column;
    }


    .primary-button,
    .secondary-button {
        width: 100%;
    }


    .team-card {
        padding: 22px;
    }


    .team-avatar {
        width: 55px;
        height: 55px;

        font-size: 20px;
    }

}
