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

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

:root {
    --primary-blue: #335CFF;
    --text-primary: #171717;
    --text-secondary: #5C5C5C;
    --text-tertiary: #A4A4A4;
    --border-color: #EBEBEB;
    --background-gray: #F7F7F7;
    --badge-purple-bg: #EFEBFF;
    --badge-purple-text: #7D52F4;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #FFFFFF;
    color: var(--text-primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Top Banner */
.top-banner {
    display: none; /* Hidden for now */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 44px;
    gap: 12px;
    width: 100%;
    height: 40px;
    background: var(--background-gray);
}

.banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    height: 16px;
}

.live-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 5px;
    height: 16px;
    background: var(--badge-purple-bg);
    border-radius: 5px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 9px;
    line-height: 11px;
    letter-spacing: 0.02em;
    color: var(--badge-purple-text);
    text-transform: uppercase;
}

.banner-content p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.banner-separator {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-tertiary);
    opacity: 0.48;
}

.learn-more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}

.learn-more:hover {
    opacity: 0.8;
}

/* Container */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    overflow: hidden;
}

/* Header */
.header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 44px;
    gap: 32px;
    width: 100%;
    max-width: 1600px;
    height: 72px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    height: 28px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    gap: 12px;
    flex: 1;
    height: 32px;
}

.social-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--background-gray);
    color: var(--text-primary);
}

/* Hide GitHub link */
.social-icon:nth-child(1) {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 64px 100px 0px 100px;
    gap: 72px;
    width: 100%;
    max-width: 1600px;
    min-height: 838px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Grid behind gradient with fade */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, #121212 1px, transparent 1px),
        linear-gradient(to bottom, #121212 1px, transparent 1px);
    background-size: 140px 140px;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.08) 70%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.08) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 496px;
    position: relative;
    z-index: 2;
}

.hero-badge-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 9px 4px 6px;
    gap: 8px;
    background: var(--background-gray);
    border-radius: 10px;
    margin-bottom: 0;
}

.new-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 5px;
    background: #FFFFFF;
    box-shadow: 0px 3px 3px -1.5px rgba(23, 23, 23, 0.04), 0px 1px 1px -0.5px rgba(23, 23, 23, 0.04);
    border-radius: 5px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.02em;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.tagline {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: var(--text-secondary);
    margin: 0;
}

.headline {
    width: 496px;
    font-family: 'Inter';
    font-weight: 550;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0;
}

.subheadline {
    width: 496px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 420px;
}

.form-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 420px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 420px;
}

.input-label {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: var(--text-secondary);
}

.email-input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
    width: 420px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 0px 3px 3px -1.5px rgba(23, 23, 23, 0.04), 0px 1px 1px -0.5px rgba(23, 23, 23, 0.04), 0px 0px 0px 1px rgba(23, 23, 23, 0.08);
    border-radius: 12px;
}

.email-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    background: transparent;
}

.email-input::placeholder {
    color: var(--text-tertiary);
}

.waitlist-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 287px;
    height: 40px;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    gap: 4px;
    height: 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
}

.btn-primary {
    width: 164px;
    background: var(--primary-blue);
    box-shadow: 0px 1px 2px rgba(14, 18, 27, 0.24), 0px 0px 0px 1px var(--primary-blue);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #2347CC;
    transform: translateY(-1px);
}

.btn-secondary {
    width: 111px;
    background: var(--background-gray);
    color: var(--text-secondary);
}

.btn-secondary {
    display: none; /* Hidden for now */
}

.btn-secondary:hover {
    background: #EBEBEB;
    transform: translateY(-1px);
}

/* Testimonial */
.testimonial {
    display: none; /* Hidden for now */
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;
    width: 390px;
    height: 20px;
}

.customer-avatars {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    width: 110px;
    height: 20px;
    mix-blend-mode: luminosity;
    opacity: 0.8;
}

.avatar {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 3px solid #FFFFFF;
    margin: 0px -2px;
}

.avatar:last-child {
    margin-right: 0;
}

.testimonial-text {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: var(--text-tertiary);
}

/* Background Grid Lines - Removed for now */

/* Gradient Blob */
.gradient-blob {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-40%);
    width: min(800px, 55vw);
    aspect-ratio: 555 / 566.74;
    pointer-events: none;
    z-index: 1;
}

.gradient-image {
    position: absolute;
    top: -17.38%;
    right: -19.86%;
    bottom: -23.01%;
    left: -23.5%;
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Mail Icon */
.mail-icon {
    width: 20px;
    height: 20px;
    flex: none;
}

/* Utility Classes */
.flex-column {
    display: flex;
    flex-direction: column;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 496px;
}

.title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 496px;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .container,
    .header,
    .hero {
        width: 100%;
        max-width: 1600px;
    }

    .hero {
        padding: 64px 60px 0px 60px;
    }

    .gradient-blob {
        width: min(700px, 52vw);
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 64px 40px 0px 40px;
    }

    .gradient-blob {
        width: min(600px, 50vw);
        right: 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 20px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .hero-content,
    .headline,
    .subheadline,
    .content-section,
    .title-section {
        width: 100%;
    }

    .headline {
        font-size: 36px;
        line-height: 44px;
    }

    .cta-section,
    .form-section,
    .input-wrapper,
    .email-input-container {
        width: 100%;
    }

    .waitlist-form {
        width: 100%;
        flex-direction: column;
        height: auto;
    }

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

    .gradient-blob {
        right: -400px;
    }
}
