:root {
    --background: #08080d;
    --background-light: #0e0e16;
    --card: #11111a;
    --card-hover: #151521;

    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #6d28d9;

    --text: #f5f5f7;
    --text-secondary: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);

    --radius: 18px;
}


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


html {
    scroll-behavior: smooth;
}


body {
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(124, 58, 237, 0.18),
            transparent 35%
        ),
        var(--background);

    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.6;

    min-height: 100vh;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;

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

    padding: 24px 7%;

    border-bottom: 1px solid var(--border);

    background: rgba(8, 8, 13, 0.75);

    backdrop-filter: blur(16px);

    position: sticky;
    top: 0;

    z-index: 100;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;
    font-weight: 700;
}


.logo > span:last-child > span {
    color: var(--purple-light);
}


.logo-mark {
    width: 34px;
    height: 34px;

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

    border-radius: 9px;

    background: linear-gradient(
        135deg,
        var(--purple),
        var(--purple-dark)
    );

    color: white;

    font-weight: 700;

    box-shadow:
        0 0 25px rgba(139, 92, 246, 0.35);
}


nav {
    display: flex;
    gap: 32px;
}


nav a {
    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 500;

    transition: 0.2s ease;
}


nav a:hover {
    color: white;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 100px 7%;

    position: relative;

    overflow: hidden;
}


.hero-content {
    max-width: 800px;

    position: relative;
    z-index: 2;
}


.badge {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 8px 14px;

    border: 1px solid rgba(139, 92, 246, 0.25);

    border-radius: 999px;

    background: rgba(139, 92, 246, 0.08);

    color: var(--purple-light);

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 28px;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #a78bfa;

    box-shadow:
        0 0 10px #a78bfa;
}


h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 7vw, 86px);

    line-height: 1.02;

    letter-spacing: -3px;

    max-width: 850px;

    margin-bottom: 28px;
}


h1 span {
    background: linear-gradient(
        90deg,
        #a78bfa,
        #7c3aed
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 650px;

    color: var(--text-secondary);

    font-size: 18px;

    margin-bottom: 38px;
}


.hero-buttons {
    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}


.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    border: 1px solid transparent;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.button:hover:not(:disabled) {
    transform: translateY(-2px);
}


.button.primary {
    background: var(--purple);

    color: white;

    box-shadow:
        0 10px 35px rgba(124, 58, 237, 0.25);
}


.button.primary:hover {
    background: #7c3aed;

    box-shadow:
        0 14px 40px rgba(124, 58, 237, 0.4);
}


.button.secondary {
    background: rgba(255, 255, 255, 0.04);

    border-color: var(--border);

    color: white;
}


.button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}


.hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    right: -150px;
    top: 100px;

    border-radius: 50%;

    background: rgba(124, 58, 237, 0.18);

    filter: blur(100px);

    pointer-events: none;
}


/* =========================
   SECTIONS
========================= */

.section {
    max-width: 1200px;

    margin: auto;

    padding: 110px 7%;
}


.section-heading {
    text-align: center;

    margin-bottom: 55px;
}


.section-label {
    color: var(--purple-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.section-heading h2,
.contact-content h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(36px, 5vw, 56px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin: 14px 0;
}


.section-heading h2 span,
.contact-content h2 span {
    color: var(--purple-light);
}


.section-heading p {
    color: var(--text-secondary);
}


/* =========================
   PRICING
========================= */

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.pricing-card {
    position: relative;

    padding: 34px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.01)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


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

    border-color:
        rgba(139, 92, 246, 0.35);
}


.pricing-card.featured {
    border-color:
        rgba(139, 92, 246, 0.45);

    box-shadow:
        0 20px 70px rgba(88, 28, 135, 0.12);
}


.popular {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(139, 92, 246, 0.12);

    color: var(--purple-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.8px;
}


.unavailable {
    opacity: 0.55;

    filter: saturate(0.65);
}


.unavailable-label {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);

    color: #a1a1aa;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.8px;
}


.card-header h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    margin-bottom: 8px;
}


.card-description {
    color: var(--text-secondary);

    font-size: 14px;

    max-width: 330px;
}


.price {
    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-top: 30px;
}


.price strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 56px;

    letter-spacing: -2px;
}


.price span {
    color: var(--text-secondary);

    font-size: 18px;
}


.price-note {
    color: #71717a;

    font-size: 12px;
}


.divider {
    height: 1px;

    background: var(--border);

    margin: 28px 0;
}


.features {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 30px;
}


.features li {
    display: flex;

    gap: 10px;

    color: #d4d4d8;

    font-size: 14px;
}


.features li span {
    color: var(--purple-light);

    font-weight: 700;
}


.button.full {
    width: 100%;
}


.button.disabled {
    width: 100%;

    background: rgba(255,255,255,0.04);

    border-color: var(--border);

    color: #71717a;

    cursor: not-allowed;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding-top: 60px;
}


.contact-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border: 1px solid rgba(139, 92, 246, 0.2);

    border-radius: 24px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(124, 58, 237, 0.16),
            transparent 40%
        ),
        var(--background-light);
}


.contact-content {
    position: relative;
    z-index: 2;
}


.contact-content h2 {
    max-width: 600px;
}


.contact-content p {
    max-width: 600px;

    color: var(--text-secondary);

    margin-bottom: 22px;
}


.email-link {
    display: inline-block;

    color: var(--purple-light);

    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
    font-weight: 600;

    transition: 0.2s ease;
}


.email-link:hover {
    color: white;
}


.contact-icon {
    width: 90px;
    height: 90px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: rgba(139, 92, 246, 0.12);

    border: 1px solid rgba(139, 92, 246, 0.25);

    color: var(--purple-light);

    font-size: 40px;
}


/* =========================
   FOOTER
========================= */

footer {
    display: flex;

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

    gap: 20px;

    padding: 30px 7%;

    border-top: 1px solid var(--border);

    color: #71717a;

    font-size: 12px;
}


.footer-logo {
    font-family: "Space Grotesk", sans-serif;

    color: white;

    font-weight: 700;

    font-size: 16px;
}


.footer-logo span {
    color: var(--purple-light);
}


.footer-links {
    display: flex;

    gap: 20px;
}


.footer-links a:hover {
    color: white;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .navbar {
        padding: 18px 5%;
    }


    nav {
        gap: 16px;
    }


    .hero {
        min-height: 650px;

        padding: 80px 5%;
    }


    h1 {
        letter-spacing: -2px;
    }


    .section {
        padding: 80px 5%;
    }


    .pricing-grid {
        grid-template-columns: 1fr;
    }


    .contact-box {
        padding: 35px;

        flex-direction: column;

        align-items: flex-start;
    }


    .contact-icon {
        display: none;
    }


    footer {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 5%;
    }
}


@media (max-width: 500px) {

    nav {
        display: none;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .button {
        width: 100%;
    }


    .pricing-card {
        padding: 25px;
    }


    .price strong {
        font-size: 48px;
    }
}