@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');

:root {
    /* App Colors */
    --deep-purple: #221538;
    --mint: #7FD8BE;
    --bright-mint: #5FD3AC;
    --soft-mint: #9FE5D1;
    --electric-purple: #7A4BFF;
    --violet-glow: #9C4EFF;
    --coral: #FF4FA3;
    --vibrant-coral: #FF7FBE;
    --deep-coral: #E0217A;
    --dark-navy: #0F0A20;
    --midnight-purple: #1A1232;
    --soft-lavender: #C9B8FF;
    --warm-white: #F2EEF7;
    --cool-gray: #808090;
}

html {
    scroll-padding-top: 120px;
}

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

body {
    font-family: 'Inconsolata', monospace;
    line-height: 1.6;
    color: var(--dark-navy);
    background: var(--warm-white);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-purple) 50%, var(--electric-purple) 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(122, 75, 255, 0.3);
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: white;
}

.logo img {
    height: 85px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--soft-lavender);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: var(--mint);
    text-shadow: 0 0 10px rgba(127, 216, 190, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, var(--mint) 0%, var(--bright-mint) 100%);
    color: var(--deep-purple);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 216, 190, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--electric-purple) 0%, var(--violet-glow) 40%, var(--coral) 100%);
    color: white;
    padding: 8rem 2rem;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(127, 216, 190, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 79, 163, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}


.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.hero-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    color: white;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.98;
    font-weight: 500;
    color: var(--soft-lavender);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-badge {
    width: 220px;
    height: 220px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(127, 216, 190, 0.12) 0%, rgba(154, 78, 255, 0.18) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 15px 35px rgba(127, 216, 190, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.logo-badge img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.logo-caption {
    color: var(--soft-lavender);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mint) 0%, var(--bright-mint) 100%);
    color: var(--deep-purple);
    padding: 1.1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(127, 216, 190, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(127, 216, 190, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--mint);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--mint);
    color: var(--deep-purple);
    transform: translateY(-4px);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    background: var(--warm-white);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--deep-purple);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cool-gray);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid rgba(127, 216, 190, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(34, 21, 56, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--mint);
    box-shadow: 0 20px 40px rgba(127, 216, 190, 0.2);
    background: linear-gradient(135deg, rgba(127, 216, 190, 0.05) 0%, rgba(159, 229, 209, 0.05) 100%);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--electric-purple);
    font-weight: 700;
}

.feature-card p {
    color: var(--cool-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, var(--midnight-purple) 0%, var(--deep-purple) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(127, 216, 190, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 79, 163, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .section-title {
    color: white;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mint) 0%, var(--bright-mint) 100%);
    color: var(--deep-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(127, 216, 190, 0.4);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 700;
}

.step p {
    color: var(--soft-lavender);
    line-height: 1.8;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    background: var(--warm-white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
    font-weight: 700;
}

.benefits-text > p {
    color: var(--cool-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--midnight-purple);
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
    font-size: 1.4rem;
}

.benefits-image {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--electric-purple) 50%, var(--violet-glow) 100%);
    border-radius: 15px;
    padding: 3rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(122, 75, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.benefits-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 216, 190, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.benefits-image > div {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--warm-white) 0%, #E8DFF5 100%);
    padding: 6rem 2rem;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(127, 216, 190, 0.2);
    box-shadow: 0 10px 30px rgba(34, 21, 56, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(127, 216, 190, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--mint);
    background: linear-gradient(135deg, rgba(127, 216, 190, 0.08) 0%, rgba(159, 229, 209, 0.08) 100%);
    transform: scale(1.08);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--mint) 0%, var(--bright-mint) 100%);
    color: var(--deep-purple);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--deep-purple);
    font-weight: 700;
}

.price {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--mint) 0%, var(--electric-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--cool-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--cool-gray);
    border-bottom: 1px solid rgba(127, 216, 190, 0.1);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
    font-family: 'Inconsolata', monospace;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--mint) 0%, var(--bright-mint) 100%);
    color: var(--deep-purple);
}

.pricing-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(127, 216, 190, 0.4);
    transform: translateY(-2px);
}

.pricing-btn.secondary {
    background: white;
    color: var(--electric-purple);
    border: 2px solid var(--electric-purple);
}

.pricing-btn.secondary:hover {
    background: var(--electric-purple);
    color: white;
}

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--vibrant-coral) 50%, var(--deep-coral) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: white;
    color: var(--deep-coral);
}

.final-cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--midnight-purple) 100%);
    color: var(--soft-lavender);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--mint);
    font-weight: 700;
}

.footer-section a {
    display: block;
    color: var(--soft-lavender);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--mint);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(127, 216, 190, 0.2);
    padding-top: 2rem;
    color: var(--cool-gray);
    font-size: 1rem;
}

/* Waitlist Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 21, 56, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: transparent;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close {
    display: none;
}

.modal-cancel-btn {
    display: none;
}

/* Compact form styling */
.formkit-form {
    padding: 1.5rem !important;
}

.formkit-form .formkit-header h2 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
}

.formkit-form .formkit-subheader p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
}

.formkit-form .formkit-guarantee {
    font-size: 0.75rem !important;
    margin-top: 0.75rem !important;
}

/* Kit Form Overrides */
.formkit-form .formkit-header,
.formkit-form .formkit-header h2 {
    color: #221538 !important;
}

.formkit-form .formkit-subheader,
.formkit-form .formkit-subheader p {
    color: #221538 !important;
}

.formkit-form .formkit-guarantee {
    color: #221538 !important;
}

.formkit-form .formkit-powered-by-convertkit {
    background-color: #f5f5f5 !important;
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-cancel-btn {
        display: block;
        margin-top: 1rem;
        padding: 0.8rem 2rem;
        background: transparent;
        border: 2px solid white;
        color: white;
        border-radius: 25px;
        font-family: 'Inconsolata', monospace;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
    }

    .modal-content {
        margin: 10% 0.5rem;
        padding: 1rem;
        width: 95%;
        max-width: 100%;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }

    .formkit-form {
        padding: 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .formkit-form .formkit-header h2 {
        font-size: 1.3rem !important;
    }

    .formkit-form .formkit-fields {
        flex-direction: column !important;
    }

    .formkit-form .formkit-field,
    .formkit-form .formkit-submit {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav {
        padding: 0.8rem 1rem;
    }

    nav ul {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    nav ul li:not(:last-child) {
        display: none;
    }

    nav a {
        padding: 0.3rem 0;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo img {
        height: 45px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        text-align: center;
    }

    .footer-section a {
        display: inline;
        margin: 0 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .logo img {
        height: 64px;
    }
}

