@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Lexend Deca', sans-serif;
    background-color: #18062B;
    color: #F0F0F0;
    line-height: 1.6;
    min-height: 100vh;
}

.page {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === NAV === */
.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 24px 0;
    width: 100%;
}
.nav__logo img { width: 80px; }
.nav__logo { text-decoration: none; }

/* === START === */
.start {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 80px;
}
.start__inner {
    max-width: 560px;
    width: 100%;
}

.start__header {
    text-align: center;
    margin-bottom: 40px;
}
.start__title {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 14px;
}
.start__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #9B8AB5;
}

/* === FORM === */
.start__form {
    background: rgba(26, 12, 46, 0.5);
    border: 1px solid #2D1A45;
    border-radius: 20px;
    padding: 36px 32px;
    margin-bottom: 40px;
}
.start__form-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    margin-bottom: 16px;
}
.start__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.start__field--small {
    width: 90px;
}
.start__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #7C6A94;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.start__input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #F0F0F0;
    background: #150820;
    border: 1px solid #2D1A45;
    border-radius: 10px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.start__input:focus {
    border-color: #6915B7;
}
.start__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}
.start__input::placeholder {
    color: #4A3566;
}
.start__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237C6A94' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.start__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #6915B7;
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    margin-top: 24px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.start__btn:hover { background: #7B22D4; transform: translateY(-1px); }
.start__btn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.start__btn-text { display: inline; }
.start__btn-loader {
    display: inline-flex;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.start__terms {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #7C6A94;
    text-align: center;
    margin-top: 16px;
}
.start__error {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F87171;
    text-align: center;
    margin-top: 12px;
    min-height: 20px;
}
.start__privacy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #4A3566;
    text-align: center;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.start__lock {
    flex-shrink: 0;
}

/* === WHAT HAPPENS NEXT === */
.start__next {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.start__next-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7C6A94;
    margin-bottom: 20px;
}
.start__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 12px;
}
.start__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.start__step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(105, 21, 183, 0.3);
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #A78BFA;
    flex-shrink: 0;
}
.start__step-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #B8A5CC;
}
.start__step-arrow {
    font-size: 14px;
    color: #3D2560;
    flex-shrink: 0;
    padding-top: 5px;
}
.start__next-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #4A3566;
    margin-top: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .start__title { font-size: 26px; }
    .start__form { padding: 28px 20px; }
    .start__form-row {
        grid-template-columns: 1fr;
    }
    .start__field--small { width: 100%; }
    .start__steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .start__step {
        align-items: center;
    }
    .start__step-arrow { display: none; }
}
