/**
 * new-entry.css - Tela de entrada rascunho-primeiro (Fase 5 do rebrand)
 * Rota #novo — substitui o overlay _chooseIntakeMode do DashboardView.
 */

.newentry-page {
    min-height: calc(100vh - var(--header-h));
    background: var(--bg);
}

.newentry-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 24px 60px;
}

.newentry-eyebrow {
    font-family: var(--mono);
    font-size: var(--fs-overline);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 8px;
}

.newentry-h1 {
    font-family: var(--brandfont);
    font-size: var(--fs-h1);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    text-wrap: balance;
    color: var(--ink);
    margin: 0 0 8px;
}

.newentry-lead {
    font-size: var(--fs-ui);
    color: var(--ink2);
    line-height: 1.5;
    margin: 0 0 20px;
    max-width: 62ch;
}

.newentry-ta {
    width: 100%;
    min-height: 132px;
    font: inherit;
    font-size: var(--fs-input);
    padding: 12px 14px;
    border: 1px solid var(--line2);
    border-radius: var(--r-ctl);
    background: var(--surf);
    color: var(--ink);
    resize: vertical;
    line-height: 1.5;
    box-sizing: border-box;
}

.newentry-ta:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-bg);
}

.newentry-btn {
    display: block;
    width: 100%;
    background: var(--brand);
    color: var(--brand-on);
    text-align: center;
    padding: 14px;
    font-size: var(--fs-ui);
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: var(--r-ctl);
    min-height: 48px;
    cursor: pointer;
    margin-top: 14px;
}

.newentry-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.newentry-ordiv {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: var(--ink3);
    font-size: var(--fs-note);
}

.newentry-ordiv::before,
.newentry-ordiv::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.newentry-secondary {
    display: block;
    width: 100%;
    text-align: center;
    font-size: var(--fs-support);
    font-weight: 700;
    font-family: inherit;
    color: var(--brand);
    border: 1px solid var(--line2);
    background: var(--surf);
    padding: 12px;
    border-radius: var(--r-ctl);
    min-height: 48px;
    cursor: pointer;
}

@media (hover: hover) {
    .newentry-btn:hover:not(:disabled) {
        background: var(--brand-d);
    }
    .newentry-secondary:hover {
        border-color: var(--brand);
    }
}
