.signup-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0 24px;
}

.signup-inner {
    width: 100%;
    max-width: var(--navbar-width);
    padding: 0 12px;
    color: #fff;
}

.signup-title {
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .4px;
    margin: 20px 0 34px 0;
}

.signup-card {
    background: var(--bg-signup);
    border-radius: 16px;
    padding: 14px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.signup-head {
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .4px;
    margin: 22px 0 22px 0;
    background: linear-gradient(97deg, var(--green-1), var(--green-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signup-info {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    margin: 12px 0;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.wa-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #383838;
    border: none;
    border-radius: 10px;
}

#waInput {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    background: #383838;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

#waInput::placeholder {
    color: #8F8F8F;
}

.prefs-title {
    font-weight: 700;
    margin: 36px 0 29px 0;
    color: #EDEDED;
}

.chips {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.chip {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 999px;
    background: #262626;
    color: #EAEAEA;
    font-weight: 400;
    font-size: 13px;
    transition: filter .15s ease, transform .02s ease;
    font-family: Roboto, sans-serif;
}

.chip:active {
    transform: scale(.98);
}

.chip[aria-pressed="true"] {
    background: linear-gradient(97deg, var(--green-1), var(--green-2));
    color: #000;
    font-weight: 700;
    border-color: transparent;
    box-shadow:
        0 8px 22px rgba(49, 230, 109, .28),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.send-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 4px 6px;
}

.send {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(97deg, var(--green-1), var(--green-2));
    color: #0A0A0A;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(33, 255, 120, .25);
    transition: transform .05s ease;
    font-family: Roboto, sans-serif;
}
.send:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(33, 255, 120, .35);
  filter: brightness(1.05);
}

.send:active {
    transform: translateY(1px);
}

.send-glow {
    content: "";
    position: absolute;
    inset-inline: -6px;
    bottom: 0;
    height: 46px;
    border-radius: 999px;
    background: radial-gradient(60% 120% at 50% 50%, rgba(49, 230, 109, .55), transparent 70%);
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
}