* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #20142c;
    color: #ede9fe;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

canvas#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    display: block;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 6vw 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.logo-mc {
    font-size: 1.7rem;
    font-weight: 800;
    color: #a78bfa;
    text-shadow: 0 1px 12px #a78bfa33;
    letter-spacing: 0.01em;
    user-select: none;
}

.nav-links {
    display: flex;
    gap: 1.6em;
}

.nav-links a {
    color: #ede9fe;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.06rem;
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.15s, color 0.13s;
}

.nav-links a:hover {
    background: #a78bfa33;
    color: #a78bfa;
}

header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 6vw 22px 6vw;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-head {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ede9fe;
    text-shadow: 0 1px 14px #3f2244;
    margin-bottom: 0.4em;
}

.hero-sub {
    color: #bdaeff;
    font-size: 1.17rem;
    margin-bottom: 2.2em;
    text-shadow: 0 1px 9px #a78bfa11;
}

.hero-buttons {
    display: flex;
    gap: 1.3em;
    justify-content: center;
    margin-bottom: 1.8em;
}

.hero-btn {
    background: linear-gradient(90deg, #a78bfa 60%, #7c3aed 100%);
    color: #231545;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.68em 2.1em;
    font-size: 1.18rem;
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: 0 2px 12px #a78bfa33;
    transition: background 0.14s, color 0.13s, box-shadow 0.15s;
    cursor: pointer;
    margin: 0 0.1em;
    display: inline-block;
}

.hero-btn.alt {
    background: linear-gradient(90deg, #c4b5fd 20%, #7c3aed 100%);
    color: #7c3aed;
}

.hero-btn:hover {
    background: linear-gradient(90deg, #ede9fe 40%, #a78bfa 100%);
    color: #7c3aed;
    box-shadow: 0 4px 22px #a78bfa55;
}

.features-section {
    width: 100%;
    max-width: 1200px;
    margin: 56px auto 36px auto;
    padding: 0 6vw 2vw 6vw;
    position: relative;
    z-index: 1;
}

.features-header {
    font-size: 1.5rem;
    color: #a78bfa;
    font-weight: 700;
    margin-bottom: 1.3em;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 10px #a78bfa1a;
}

.feature-item:hover {
    transform: translateY(-4px) scale(1.045);
    box-shadow: 0 8px 32px #a78bfa44, 0 2px 12px #a78bfa1a;
}

.feature-icon {
    font-size: 2.2em;
    margin-bottom: 0.3em;
    color: #a78bfa;
    filter: drop-shadow(0 2px 12px #a78bfa40);
}

.plans-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 42px auto;
    padding: 0 6vw;
    position: relative;
    z-index: 1;
}

.plans-header {
    font-size: 1.5rem;
    color: #a78bfa;
    margin-bottom: 0.9em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 10px #a78bfa1a;
}

.plan-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    width: 100%;
}

.plan-card {
    background: rgba(40, 20, 60, 0.94);
    border-radius: 1.2rem;
    box-shadow: 0 2px 24px #a78bfa1a, 0 1.5px 16px #0004;
    border: 1.5px solid #a78bfa33;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.1rem 1.2rem 1.1rem;
    position: relative;
    transition: transform 0.14s, box-shadow 0.13s;
}

.plan-card:hover {
    transform: translateY(-3px) scale(1.028);
    box-shadow: 0 8px 48px #a78bfa44, 0 2px 24px #a78bfa1a;
}

.plan-title {
    color: #ede9fe;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.45em;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 7px #a78bfa11;
}

.plan-price {
    color: #a78bfa;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.12em;
}

.plan-desc {
    color: #bdaeff;
    font-size: 1.02rem;
    margin-bottom: 1.2em;
    text-align: center;
}

.plan-btn {
    background: linear-gradient(90deg, #a78bfa 60%, #7c3aed 100%);
    color: #231545;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.48em 1.4em;
    font-size: 1.07rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 1px 8px #a78bfa33;
    margin-top: 0.1rem;
    transition: background 0.15s, color 0.16s, box-shadow 0.17s;
    cursor: pointer;
}

.plan-btn:hover {
    background: linear-gradient(90deg, #ede9fe 40%, #a78bfa 100%);
    color: #7c3aed;
    box-shadow: 0 4px 16px #a78bfa55;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

.feature-item {
    background: rgba(40, 20, 60, 0.94);
    border-radius: 1em;
    border: 1.5px solid #a78bfa33;
    box-shadow: 0 2px 12px #a78bfa1a;
    color: #ede9fe;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.12em;
    transition: transform 0.13s, box-shadow 0.13s;
    min-height: 170px;
    height: 170px;
    padding: 1.5em 1.3em;
    text-align: center;
}

.feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 12px #a78bfa40);
}

/* FAQ */
.faq-section {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 34px auto;
    padding: 0 4vw 6vw 4vw;
    position: relative;
    z-index: 1;
}

.faq-header {
    font-size: 1.45rem;
    color: #a78bfa;
    font-weight: 700;
    margin-bottom: 1.1em;
    letter-spacing: 0.01em;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.faq-q {
    background: rgba(40, 20, 60, 0.93);
    border-radius: 0.9em;
    border: 1.5px solid #a78bfa33;
    box-shadow: 0 2px 12px #a78bfa1a;
    padding: 1.2em 1.2em 1em 1.2em;
    cursor: pointer;
    position: relative;
    transition: background 0.16s;
    user-select: none;
}

.faq-q[open] {
    background: #2e185a;
}

.faq-title {
    color: #ede9fe;
    font-weight: 700;
    font-size: 1.13rem;
    margin-bottom: 0.35em;
    transition: color 0.16s;
}

.faq-q[open] .faq-title {
    color: #a78bfa;
}

.faq-a {
    color: #bdaeff;
    font-size: 1.05rem;
    margin-top: 0.25em;
    padding: 0.2em 0 0.9em 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 8px 22px 8px;
    background: none;
    color: #bdaeff;
    font-size: 1rem;
    border-top: 1px solid #312e81;
    width: 100%;
    letter-spacing: 0.01em;
    z-index: 1;
}

.footer-links {
    margin: 16px 0 5px 0;
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdaeff;
    font-size: 1.02em;
    text-decoration: none;
    transition: color 0.15s;
    margin: 0 0.2em;
}

.footer-links a:hover {
    color: #a78bfa;
}

@media (max-width: 700px) {
    .navbar {
        padding: 12px 2vw 0 2vw;
    }

    .logo-mc {
        font-size: 1.14rem;
    }

    header {
        padding: 24px 2vw 12px 2vw;
    }

    .hero-head {
        font-size: 1.15rem;
    }

    .plans-header {
        font-size: 1.03rem;
    }

    .plans-section {
        padding: 0 2vw;
    }

    .plan-list {
        gap: 0.7rem;
    }

    .faq-section {
        padding: 0 2vw 5vw 2vw;
    }
}