/* Global Styles */
:root {
    --primary-color: #0b0b0b;
    --secondary-color: #d6d4ce;
    --primary-font: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", "Nimbus Sans", sans-serif;
}

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

body {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--primary-font);
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 47px 70px 0 70px;
}

header nav {
    display: flex;
    align-items: flex-end;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 23px;
    height: 24px;
}

header .logo span {
    margin-left: 6px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

header nav a {
    color: #d6d4ce;
    text-decoration: none;
    font-size: 16px;
    border: none;
    padding: 8px 16px;
    transition: all 0.2s;
    font-weight: 500;
    line-height: 28px;
    background-color: transparent;
    display: flex;
    align-items: flex-end;
    margin-bottom: 2px;
}

header nav .nav-home {
    margin-right: 20px;
}

header nav a:hover {
    background-color: transparent;
    color: #d6d4ce;
}

/* Coming Soon Section */
.coming-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.coming-soon .tagline {
    display: inline-flex;
    padding: 4px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--secondary-color);
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.coming-soon h1 {
    max-width: 1016px;
    width: 100%;
    color: #D6D4CE;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3.2px;
    margin-bottom: 16px;
}

.coming-soon p {
    color: #D6D4CE;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    width: 100%;
    align-items: center;
    flex-direction: row;
}

.waitlist-form input[type="email"] {
    display: flex;
    width: 410px;
    height: 50px;
    padding: 0 28px;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #DCDCDC;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    flex: 1;
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--secondary-color);
}

.waitlist-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.30);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
}

.waitlist-form button {
    height: 50px;
    padding: 0 24px;
    border-radius: 25px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.waitlist-form button:hover {
    opacity: 0.9;
}

.waitlist-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status {
    text-align: center;
    font-size: 14px;
    min-height: 20px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 12px;
}

.form-status.success {
    color: #4CAF50;
}

.form-status.error {
    color: #f44336;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 40px 40px 0 40px;
    }
    
    .coming-soon h1 {
        font-size: 56px;
        letter-spacing: -2.8px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 30px 20px 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    header nav {
        align-self: stretch;
        justify-content: center;
        align-items: center;
    }
    
    header nav a {
        align-items: center;
        margin-bottom: 0;
    }
    
    header nav .nav-home {
        margin-right: 10px;
    }
    
    .coming-soon {
        padding: 20px;
    }
    
    .coming-soon h1 {
        font-size: 48px;
        letter-spacing: -2.4px;
        line-height: 1.1;
    }
    
    .coming-soon p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 16px;
        max-width: 400px;
    }
    
    .waitlist-form input[type="email"],
    .waitlist-form button {
        width: 100%;
        height: 50px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 15px 0 15px;
        gap: 15px;
    }
    
    header .logo span {
        font-size: 18px;
    }
    
    header nav a {
        font-size: 14px;
        padding: 6px 12px;
        align-items: center;
        margin-bottom: 0;
    }
    
    .coming-soon {
        padding: 15px;
    }
    
    .coming-soon h1 {
        font-size: 36px;
        letter-spacing: -1.8px;
        line-height: 1.1;
    }
    
    .coming-soon p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .coming-soon .tagline {
        font-size: 12px;
        padding: 3px 12px;
        line-height: 24px;
    }
    
    .waitlist-form {
        max-width: 300px;
        gap: 12px;
    }
    
    .waitlist-form input[type="email"] {
        padding: 0 20px;
        font-size: 14px;
    }
    
    .waitlist-form button {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 360px) {
    .coming-soon h1 {
        font-size: 32px;
        letter-spacing: -1.6px;
    }
    
    .coming-soon p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .waitlist-form {
        max-width: 280px;
    }
}