* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #e5e5e5;
    font-family: 'Avenir Next', 'Avenir', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    width: 100%;
}

/* Hero Section */
.hero {
    margin-bottom: 80px;
    margin-top: 0;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: nowrap;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    text-transform: none;
    background-image: url('font-image1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-wrapper {
    flex-shrink: 0;
    position: relative;
    max-width: 600px;
    width: 100%;
}


.hero-description p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #e5e5e5;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
}


.hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.hero-image:hover {
    opacity: 1;
}

/* Signup Section */
.signup-section {
    max-width: 700px;
    margin: 0;
}

/* Signup Form */
.signup-form {
    margin-top: 56px;
}

.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #e5e5e5;
    font-size: 0.9375rem;
    font-family: inherit;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.email-input::placeholder {
    color: #6b6b6b;
    font-weight: 400;
}

.submit-button {
    padding: 16px 32px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 32px 20px;
        align-items: flex-start;
    }

    .hero {
        margin-bottom: 60px;
        margin-top: 0;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-content {
        display: flex;
    }

    .hero-text-wrapper {
        max-width: 100%;
        gap: 24px;
        display: contents;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3.5rem);
        order: 1;
    }

    .hero-image-wrapper {
        max-width: 100%;
        width: 100%;
        order: 2;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .hero-description {
        gap: 16px;
        order: 3;
    }

    .hero-description p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .signup-section {
        max-width: 100%;
    }

    .form-group {
        flex-direction: column;
        gap: 12px;
    }

    .email-input {
        min-width: 100%;
        width: 100%;
    }

    .submit-button {
        width: 100%;
    }

    .signup-form {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 24px 16px;
    }

    .hero {
        margin-bottom: 48px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-description p {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .email-input,
    .submit-button {
        padding: 14px 18px;
        font-size: 0.9375rem;
    }
}

