/* ============================================
   PRELAUNCH LANDING PAGE
   ============================================ */

.prelaunch {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
}

.prelaunch__container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.prelaunch__card {
    background: white;
    border-radius: 24px;
    padding: 80px 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.prelaunch__card::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    height: 200px;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 107, 107, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.prelaunch__content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.prelaunch__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 107, 107, 0.85);
}

.prelaunch__badge-icon {
    font-size: 14px;
}

.prelaunch__headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}

.prelaunch__subheadline {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #484848;
    margin: 0 0 48px;
}

.prelaunch__body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prelaunch__body + .prelaunch__body {
    margin-top: -24px;
}

.prelaunch__transition {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #484848;
    margin: 0 0 56px;
    font-style: italic;
}

.prelaunch__cta-section {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.03) 0%,
        rgba(238, 90, 111, 0.02) 100%
    );
    border: 1px solid rgba(255, 107, 107, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin: 56px 0;
}

.prelaunch__form-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 24px;
}

.prelaunch__form {
    max-width: 480px;
    margin: 0 auto;
}

.prelaunch__input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.prelaunch__input-wrapper {
    flex: 1;
}

.prelaunch__input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    background: white;
    color: #1a1a2e;
    transition: all 0.2s ease;
}

.prelaunch__input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.08);
}

.prelaunch__input::placeholder {
    color: #aaaaaa;
}

.prelaunch__button {
    height: 50px;
    padding: 0 36px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.prelaunch__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

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

.prelaunch__toggle-link {
    font-size: 14px;
    color: #888888;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.prelaunch__toggle-link:hover {
    color: #ff6b6b;
    text-decoration: none;
}

.prelaunch__success {
    display: none;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.06) 0%,
        rgba(5, 150, 105, 0.04) 100%
    );
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 24px;
    font-size: 17px;
    color: #065f46;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
    animation: successFadeIn 0.4s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.prelaunch__success::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    animation: successCheckmark 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.prelaunch__success::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(16, 185, 129, 0.1),
        transparent
    );
    animation: successShimmer 1.5s ease-out;
}

@keyframes successFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successCheckmark {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

@keyframes successShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.prelaunch__microcopy {
    font-size: 13px;
    color: #999999;
    margin-top: 16px;
    line-height: 1.5;
}

.prelaunch__footer {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.prelaunch__partners {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .prelaunch {
        padding: 60px 32px;
    }

    .prelaunch__card {
        padding: 60px 60px;
    }

    .prelaunch__headline {
        font-size: 40px;
    }

    .prelaunch__subheadline {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .prelaunch {
        padding: 40px 24px;
    }

    .prelaunch__card {
        padding: 48px 32px;
        border-radius: 20px;
    }

    .prelaunch__headline {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .prelaunch__subheadline {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .prelaunch__body {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .prelaunch__transition {
        font-size: 16px;
        margin-bottom: 44px;
    }

    .prelaunch__cta-section {
        padding: 32px 24px;
        margin: 44px 0;
    }

    .prelaunch__input-row {
        flex-direction: column;
        gap: 10px;
    }

    .prelaunch__button {
        width: 100%;
    }

    .prelaunch__success {
        padding: 20px 24px;
        font-size: 16px;
    }

    .prelaunch__success::before {
        left: 16px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .prelaunch__card {
        padding: 40px 24px;
    }

    .prelaunch__headline {
        font-size: 28px;
    }

    .prelaunch__subheadline {
        font-size: 17px;
    }

    .prelaunch__badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .prelaunch__success {
        padding: 18px 20px;
        font-size: 15px;
    }

    .prelaunch__success::before {
        font-size: 18px;
    }
}
