* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f5f7fb;
    color: #182033;
}

.topbar {
    height: 68px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111827;
    color: white;
}

.topbar strong {
    display: block;
    font-size: 19px;
}

.topbar span {
    color: #94a3b8;
    font-size: 13px;
}

.version {
    padding: 7px 11px;
    border: 1px solid #334155;
    border-radius: 999px;
}

.container {
    width: min(1050px, 92%);
    margin: 45px auto;
}

.hero {
    margin-bottom: 28px;
}

.hero h1 {
    max-width: 760px;
    margin: 7px 0 12px;
    font-size: clamp(31px, 5vw, 49px);
    line-height: 1.08;
}

.hero p {
    max-width: 730px;
    color: #64748b;
    line-height: 1.7;
}

.eyebrow {
    margin: 0;
    color: #2563eb !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.card {
    margin-bottom: 22px;
    padding: 25px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}

textarea,
input {
    width: 100%;
    padding: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #fff;
    color: #172033;
    font: inherit;
}

textarea {
    resize: vertical;
}

textarea:focus,
input:focus {
    outline: 3px solid rgba(37, 99, 235, 0.13);
    border-color: #2563eb;
}

button {
    margin-top: 15px;
    padding: 12px 19px;
    border: 0;
    border-radius: 11px;
    background: #2563eb;
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 4px 0 0;
}

.dry-run {
    padding: 7px 11px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
}

.suggestions {
    display: grid;
    gap: 12px;
}

.suggestion {
    display: grid;
    grid-template-columns: 1fr 1fr 130px;
    gap: 13px;
    align-items: end;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: #f8fafc;
}

.confidence {
    min-height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 13px;
    border-left: 1px solid #cbd5e1;
}

.confidence span {
    color: #15803d;
    font-size: 19px;
    font-weight: 900;
}

.confidence small {
    color: #64748b;
}

.empty-state {
    padding: 30px;
    text-align: center;
    border-radius: 13px;
    background: #f8fafc;
    color: #64748b;
}

@media (max-width: 760px) {
    .suggestion {
        grid-template-columns: 1fr;
    }

    .confidence {
        padding: 0;
        border-left: 0;
    }
}
