:root {
    --primary: #6d28d9;
    --secondary: #ec4899;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #111827;
    color: white;
    overflow-x: hidden;
}

.coming-soon-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 0.75rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    animation: pulse 2s infinite;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.banner-logo {
    width: 24px;
    height: 24px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob-container {
    position: absolute;
    inset: -10px;
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(40px);
    mix-blend-mode: screen;
    animation: float 10s infinite;
}

.blob.purple {
    background: rgba(109, 40, 217, 0.4);
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.blob.cyan {
    background: rgba(34, 211, 238, 0.4);
    top: 33%;
    right: 25%;
    animation-delay: 2s;
}

.blob.pink {
    background: rgba(236, 72, 153, 0.4);
    bottom: 25%;
    left: 33%;
    animation-delay: 4s;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111827 10%, transparent 90%);
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    padding: 2rem;
    margin-top: 4rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    margin-bottom: 0.5rem;
}

.title-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 2rem;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    backdrop-filter: blur(10px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1f2937;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 400px;
    text-align: center;
    position: relative;
}

/* Update modal styles */
.form-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 700px; /* Increased width for form */
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    max-height: 80vh; /* Limit height */
    overflow-y: auto; /* Allow scrolling */
}

.close-form {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    z-index: 1000; /* Ensure it's above the iframe */
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.waitlist-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
    }
}

/* Previous styles remain, adding new styles for features and pricing */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features {
    padding: 4rem 0;
    background: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.text-center h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.text-center .subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.email-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    margin-top: 4rem;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(109, 40, 217, 0.2);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-form {
    margin-top: 3rem;
}

@media (max-width: 640px) {
    .email-form {
        flex-direction: column;
    }
    
    .email-input, .primary-btn {
        width: 100%;
    }
}

/* Legal Pages Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #1a1a1a;
}

.container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content section {
    margin-bottom: 2rem;
}

.terms-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff !important;
}

.privacy-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff !important;
}

.refund-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff !important;
}

.content h2 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7ff 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.icon-container {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3ff;
    border-radius: 50%;
}

.icon-container svg {
    width: 32px;
    height: 32px;
    color: #7c3aed;
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.trust-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.learn-more:hover {
    color: #6025c0;
}

.logo {
    position: absolute;
    top: 4rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.logo-image {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #9333ea, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.modal-logo {
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
}

/* Add these styles */
.modal-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-logo {
    width: 32px;
    height: 32px;
}

/* Pricing Page Styles */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn.active {
    background: var(--primary);
}

.save-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.7;
}

.features-list {
    margin: 2rem 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.check-icon {
    color: var(--primary);
    margin-right: 0.75rem;
}

.card-footer {
    margin-top: 2rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
}

.cta-button:not(.primary) {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.pricing-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-note {
    font-size: 0.875rem;
    margin-top: 1rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .billing-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .toggle-btn {
        width: 100%;
        max-width: 300px;
    }
}