:root {
    --purple-500: rgb(59, 130, 246);
    --purple-600: rgb(37, 99, 235);
    --purple-700: rgb(29, 78, 216);
    --accent-500: rgb(20, 184, 166);
    --accent-600: rgb(13, 148, 136);
    --indigo-500: rgb(99, 102, 241);
    --indigo-600: rgb(79, 70, 229);
    --background: rgb(17, 17, 17);
    --card-bg: rgba(26, 26, 26, 0.8);
    --text-primary: rgb(229, 229, 229);
    --text-secondary: rgba(229, 229, 229, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

/* Gradient background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}



.hero {
    text-align: center;
    padding: 4rem 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple-500), var(--indigo-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.benefit-card h3 {
    color: var(--purple-500);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
}


.form-group {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

input, select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

input::placeholder, select::placeholder {
    color: rgba(229, 229, 229, 0.5);
}

button {
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2rem 0;
    color: var(--text-primary);
}

.price-tag .amount {
    background: linear-gradient(135deg, var(--purple-500), var(--indigo-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.limited-spots {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--purple-500);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.features-list {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    list-style: none;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-500);
}

.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: rgb(34, 197, 94);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-weight: 500;
}

.pricing-comparison {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.price-card {
    flex: 1;
    max-width: 300px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.price-card.founder {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.price-card .best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.price {
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--purple-500), var(--indigo-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.total-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.process-note {
    background: rgba(168, 85, 247, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
}

.process-note p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--purple-500);
}

.process-note ol {
    list-style-position: inside;
    color: var(--text-secondary);
}

.process-note li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }



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

    .cta-section {
        padding: 2rem 1rem;
    }

    .pricing-comparison {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
    }

    .price-card.founder {
        order: -1;
    }
} 