:root {
    --primary-color: #4F46E5;
    --secondary-color: #10B981;
    --text-color: #1F2937;
    --background-color: #F9FAFB;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    min-height: 100vh;
    padding-bottom: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.description {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #4338CA;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #059669;
}

.arrow {
    margin-left: 0.5rem;
}

.hidden {
    display: none;
}

.success-message {
    background-color: #ECFDF5;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.success-message h2 {
    color: #065F46;
    margin-bottom: 1rem;
}

.success-message p {
    color: #047857;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 0;
    }
}

.widget-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    text-align: center;
}

.widget-title {
    color: #4638e6;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.widget-desc {
    color: #7b818a;
    font-size: 1.2rem;
    margin-bottom: 36px;
}

.waitlist-inline-container {
    max-width: 420px;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    display: block;
}

.widget-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    box-sizing: border-box;
    background: none;
    padding: 0;
}

.widget-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    box-sizing: border-box;
    margin: 0;
}

.widget-btn {
    font-size: 1.1rem;
    padding: 0 24px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    font-weight: 500;
    cursor: pointer;
    height: 48px;
    transition: background 0.2s;
    margin: 0;
    box-sizing: border-box;
}

.widget-btn:hover {
    background: #4338ca;
}

.widget-result {
    border: 2px solid #4638e6;
    border-radius: 12px;
    padding: 16px 10px;
    font-size: 1rem;
    margin-top: 18px;
    background: #fafaff;
    color: #222;
    word-break: break-all;
}

.widget-result strong {
    color: #222;
    font-weight: 600;
}

.widget-link {
    color: #4638e6;
    font-family: monospace;
    font-size: 0.93rem;
    display: block;
    margin-top: 8px;
    word-break: break-all;
}

@media (max-width: 600px) {
    .widget-container {
        padding: 20px 5px;
    }
    .widget-input {
        width: 140px;
        font-size: 1rem;
        padding: 12px 8px;
    }
    .widget-btn {
        font-size: 1rem;
        height: 40px;
        padding: 0 12px;
    }
    .widget-title {
        font-size: 1.3rem;
    }
    .widget-result {
        font-size: 1rem;
        padding: 14px 6px;
    }
}

.navbar {
    width: 100%;
    background: #323232;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 64px;
    box-sizing: border-box;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    margin-left: 24px;
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.15s;
}

.nav-link:hover {
    background: #444;
}

.nav-signup {
    background: #6366f1;
    color: #fff;
    font-weight: 500;
    margin-left: 16px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}

.nav-signup:hover {
    background: #4338ca;
}

.darkmode-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 16px;
}

.hero-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 0 32px 0;
    flex-wrap: wrap;
    column-gap: 60px;
}

.hero-left {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 480px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    font-size: 2.8rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 420px;
}

.hero-btn {
    display: inline-block;
    background: #6366f1;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    transition: background 0.15s, box-shadow 0.15s;
    margin-top: 8px;
}

.hero-btn:hover {
    background: #4338ca;
    box-shadow: 0 4px 16px rgba(99,102,241,0.13);
}

.hero-right {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    max-width: 700px;
}

.waitlist-section {
    margin: 48px auto 0 auto;
    max-width: 520px;
    text-align: center;
}

.waitlist-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}

.waitlist-widget {
    margin: 0 auto;
    padding: 32px 18px 24px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    max-width: 420px;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 32px;
    }
    .hero-right, .hero-left {
        max-width: 100%;
        min-width: 0;
    }
    .hero-main {
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 8px 0;
    }
    .nav-link {
        margin-left: 0;
        margin-right: 8px;
        font-size: 0.98rem;
    }
    .hero-title, .gradient-text {
        font-size: 2rem;
    }
    .hero-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
    .waitlist-section {
        margin-top: 24px;
    }
    .waitlist-widget {
        padding: 18px 4px 14px 4px;
    }
    .widget-input {
        width: 100px;
        font-size: 1rem;
        padding: 10px 6px;
    }
    .widget-btn {
        font-size: 1rem;
        height: 36px;
        padding: 0 10px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 34, 34, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    padding: 36px 28px 28px 28px;
    min-width: 320px;
    max-width: 95vw;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 10;
}

.modal-close:hover {
    color: #6366f1;
}

@media (max-width: 600px) {
    .modal-content {
        min-width: 0;
        padding: 18px 4px 14px 4px;
    }
}

.footer-fixed, .footer-static, .footer-visible, .footer-hidden {
    display: unset !important;
    position: unset !important;
    opacity: unset !important;
}

#main-footer {
    width: 100%;
    /* background: #232323; */
    color: #fff;
    padding: 28px 0 22px 0;
    text-align: center;
    font-size: 1rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    position: fixed;
    display: block;
    opacity: 1;
}

.footer-fixed {
    position: fixed;
}
.footer-static {
    position: static;
} 