html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

/* Optional: Style the scrollbar to look better */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #090A0A;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #090A0A;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: #090A0A;
    color: white;
    min-height: 100vh;
}

/* Optional: Add a subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    opacity: 0.4;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding-top: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.logo-image {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a:not(.pill-button) {
    color: rgba(255, 255, 255, 0.7);
}

.pill-button {
    background: linear-gradient(90deg, #4361ee, #3451db);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(67, 97, 238, 0.2);
    display: inline-flex;
    align-items: center;
    line-height: 20px;
}

.pill-button:hover {
    background: linear-gradient(90deg, #3451db, #2941c8);
    box-shadow: 0 0 0 1px rgba(67, 97, 238, 0.4);
}

.hero {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-logo-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.hero-logo-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.message-bubble {
    margin-bottom: 48px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.message-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}


.message-bubble::before {
    content: '';
    content: '';
    
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9333ea, #a855f7, #c084fc, #9333ea);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: 1;
    animation: gradientShift 3s ease infinite, glowPulse 2s ease-in-out infinite alternate;
    filter: blur(15px);
    opacity: 0.7;
}

@keyframes dopeGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(147, 51, 234, 0.4),
            0 0 60px rgba(147, 51, 234, 0.2),
            0 0 90px rgba(147, 51, 234, 0.1),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    25% {
        box-shadow: 
            0 0 50px rgba(147, 51, 234, 0.6),
            0 0 100px rgba(147, 51, 234, 0.3),
            0 0 150px rgba(147, 51, 234, 0.15),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(147, 51, 234, 0.5),
            0 0 80px rgba(147, 51, 234, 0.25),
            0 0 120px rgba(147, 51, 234, 0.12),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1.01);
    }
    75% {
        box-shadow: 
            0 0 60px rgba(147, 51, 234, 0.7),
            0 0 120px rgba(147, 51, 234, 0.35),
            0 0 180px rgba(147, 51, 234, 0.18),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1.03);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.4;
        filter: blur(10px);
    }
    100% {
        opacity: 0.8;
        filter: blur(20px);
    }
}

h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}





.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 540px;
}

/* Waitlist Form in Hero */
.waitlist-form {
    margin-top: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-form input:focus {
    outline: none;
    border-color: rgba(67, 97, 238, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.submit-btn {
    background: linear-gradient(90deg, #4361ee, #3451db);
    color: white;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    white-space: nowrap;
    width: auto;
    min-width: 140px;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #3451db, #2941c8);
    transform: translateY(-1px);
}

.email-form input {
    width: 100%;
    box-sizing: border-box;
}

.submit-btn {
    width: auto;
    box-sizing: border-box;
}


/* Features Grid */
.features-section {
    margin: 120px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 48px;
    margin-bottom: 64px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.comparison-section {
    margin: 120px 0;
    text-align: center;
}

.comparison-section h2 {
    font-size: 48px;
    margin-bottom: 64px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-item {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comparison-item h3 {
    font-size: 24px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.comparison-item p::before {
    content: "•";
    color: #3B82F6;
}

.waitlist-section {
    margin: 120px 0;
    text-align: center;
}

.waitlist-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.waitlist-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-form-large {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.email-form-large {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.email-form-large input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 16px;
    transition: all 0.2s ease;
}

.email-form-large input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-form-large input:focus {
    outline: none;
    border-color: rgba(67, 97, 238, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.submit-btn-large {
    background: linear-gradient(90deg, #4361ee, #3451db);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    white-space: nowrap;
}

.submit-btn-large:hover {
    background: linear-gradient(90deg, #3451db, #2941c8);
    transform: translateY(-1px);
}

.form-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer Styles */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding: 24px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 40px 24px;
    }

    h1 {
        font-size: 42px;
        text-align: center;
    }

    h2 {
        font-size: 22px;
        text-align: center;
    }

    .message-bubble {
        margin-bottom: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section h2,
    .comparison-section h2,
    .waitlist-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-form-large {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .message-bubble {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .feature-card {
        padding: 32px;
    }
    
    .waitlist-form-large {
        padding: 32px;
    }
    
    .email-form input,
    .email-form-large input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    h2 {
        text-align: center;
    }
} 