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

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background */
.background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 10;
    padding: 0 clamp(24px, 5vw, 120px);
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Megrim', cursive;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: absolute;
    left: clamp(24px, 5vw, 120px);
    right: clamp(24px, 5vw, 120px);
    top: calc(50% - 65.5px);
    transform: translateY(-50%);
    z-index: 5;
}

.badge {
    display: inline-block;
    padding: 10px 14px;
    background: rgba(183, 67, 159, 0.08);
    border: 1px solid rgba(183, 67, 159, 0.2);
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 400;
    color: #b3429c;
    text-transform: capitalize;
    letter-spacing: -0.4px;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 600;
    line-height: 1.3;
    color: #fefefe;
    margin-bottom: 28px;
    max-width: 900px;
}

.hero-description {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.5;
    color: #d4d4d4;
    max-width: 700px;
    margin-bottom: clamp(40px, 6vw, 84px);
}

/* Signup Form */
.signup-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    height: 56px;
    background: rgba(74, 74, 74, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.signup-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #fff;
}

.signup-form input::placeholder {
    color: #a4a4a4;
}

.signup-form button {
    width: 120px;
    min-width: 100px;
    height: 38px;
    background: #b7439f;
    border: none;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    letter-spacing: -0.8px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.signup-form button:hover {
    background: #9f3588;
}

.signup-form button:disabled {
    background: #6b6b6b;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    margin-top: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    max-width: 420px;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

/* Hide reCAPTCHA badge (attribution added near form per Google's terms) */
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 10;
}

.recaptcha-notice a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(24px, 5vw, 120px);
    z-index: 10;
    transform: scaleY(-1);
}

.footer > * {
    transform: scaleY(-1);
}

.copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Tablet */
@media (max-width: 768px) {
    .header {
        height: 60px;
    }

    .hero-title br {
        display: none;
    }

    .footer {
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .signup-form {
        flex-direction: column;
        height: auto;
        padding: 16px;
        border-radius: 24px;
        gap: 12px;
    }

    .signup-form input {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .signup-form button {
        width: 100%;
    }
}
