/* ── SIGNUP FORM ── */

.signup-band {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0E0D25 100%);
    padding: 0;
    border-top: 1px solid var(--rule);
}

.signup-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 7rem 2rem;
}

.signup-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.signup-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1rem;
}

.signup-headline em {
    font-style: italic;
    font-weight: 300;
}

.signup-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    max-width: 460px;
    margin: 0 auto 3rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.85rem 1.15rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    border-radius: var(--radius);
    -webkit-appearance: none;
    appearance: none;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.form-field input:focus {
    border-color: rgba(255, 138, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.form-select-wrap {
    position: relative;
}

.form-select-wrap select {
    width: 100%;
    appearance: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.85rem 2.5rem 0.85rem 1.15rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
    border-radius: var(--radius);
}

.form-select-wrap select:focus {
    border-color: rgba(255, 138, 0, 0.4);
}

.form-select-wrap::after {
    content: '↓';
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    pointer-events: none;
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    border: none;
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border-radius: var(--radius);
    margin-top: 0.25rem;
}

.submit-btn:hover {
    background: #FF9A20;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.form-note {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 0.5rem;
}

/* Success state */
.signup-success {
    display: none;
    padding: 2rem;
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 138, 0, 0.05);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.signup-success p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
}