/*
 * default-hero.css — Стили onboarding-блока.
 * Scoped: все правила внутри #default-hero-state.
 */

#default-hero-state {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* Заголовок */
#default-hero-state #hero-title {
    font-size: 16px;
    line-height: 1.55;
    color: var(--t1);
    font-weight: 500;
}

#default-hero-state .hero-title__highlight {
    color: var(--gold3);
    font-weight: 700;
}

/* Блок ввода */
#default-hero-state .default-hero__input-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1.5px solid var(--bd);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--card);
    transition: border-color .2s;
}
#default-hero-state .default-hero__input-wrap:focus-within {
    border-color: var(--gold2);
}

#default-hero-state #hero-text-input {
    width: 100%;
    min-height: 100px;
    border: none;
    outline: none;
    resize: none;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    color: var(--t1);
    background: transparent;
    box-sizing: border-box;
}
#default-hero-state #hero-text-input::placeholder { color: var(--t4); }
#default-hero-state #hero-text-input.error { outline: 2px solid var(--danger); border-radius: 4px; }

#default-hero-state .default-hero__input-actions {
    display: flex;
    gap: 8px;
}

/* Вспомогательные кнопки */
#default-hero-state #start-voice-recording,
#default-hero-state #submit-analysis-input {
    padding: 7px 16px;
    border: 1.5px solid var(--bd);
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    color: var(--t2);
    cursor: pointer;
    transition: border-color .15s, color .15s;
}
#default-hero-state #start-voice-recording:hover,
#default-hero-state #submit-analysis-input:hover {
    border-color: var(--gold2);
    color: var(--gold3);
}

/* CTA-кнопка */
#default-hero-state #start-analysis-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold1) 0%, var(--gold2) 45%, var(--gold3) 100%);
    font-size: 15px;
    font-family: inherit;
    font-weight: 700;
    color: #3B1F0A;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(232,155,44,.28), inset 0 1px 0 rgba(255,255,255,.45);
    transition: opacity .15s, transform .15s;
}
#default-hero-state #start-analysis-button:hover  { opacity: .92; transform: translateY(-1px); }
#default-hero-state #start-analysis-button:active { transform: translateY(0); }

/* Строка доверия */
#default-hero-state .default-hero__trust {
    font-size: 12px;
    color: var(--t4);
    text-align: center;
}
