#ce-disc-app {
    max-width: 980px;
    margin: 40px auto;
    padding: 0 20px;
}

.ce-disc-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(7,24,39,.08);
    border: 1px solid rgba(7,24,39,.08);
    margin-bottom: 26px;
}

.ce-disc-welcome-card h2,
.ce-disc-card h2,
.ce-disc-card h3 {
    color: #071827;
    margin-top: 0;
    line-height: 1.25;
}

.ce-disc-label {
    color: #c99a4a;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ce-disc-intro-list {
    margin: 22px 0;
    padding-left: 22px;
    line-height: 1.7;
}

.ce-disc-small-note,
.ce-disc-result-note {
    color: #475569;
    font-size: .98rem;
    line-height: 1.6;
}

.ce-disc-button,
.ce-disc-answer {
    display: block;
    width: 100%;
    margin: 13px 0;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: #071827;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all .2s ease;
}

.ce-disc-button:hover,
.ce-disc-answer:hover {
    background: #c99a4a;
    color: #071827;
    transform: translateY(-1px);
}

.ce-disc-inline-button {
    width: auto;
    display: inline-block;
    text-decoration: none;
    padding: 13px 24px;
}

.ce-disc-progress-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #475569;
    font-size: .92rem;
    margin-bottom: 10px;
}

.ce-disc-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 28px;
}

.ce-disc-progress-fill {
    height: 100%;
    background: #c99a4a;
    border-radius: 999px;
    transition: width .25s ease;
}

#ce-disc-reflection {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(7,24,39,.18);
    border-radius: 12px;
    font-size: 1rem;
    margin: 12px 0 18px;
}

.ce-disc-results-header {
    text-align: center;
}

.ce-disc-results-header h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    margin-bottom: 14px;
}

.ce-disc-styles {
    color: #334155;
}

.ce-disc-divider {
    display: inline-block;
    margin: 0 12px;
    color: #94a3b8;
}

.ce-disc-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ce-disc-card ul {
    margin-bottom: 0;
    padding-left: 22px;
    line-height: 1.7;
}

.ce-disc-email-card label {
    display: block;
    font-weight: 700;
    margin: 16px 0 6px;
    color: #071827;
}

.ce-disc-email-card input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(7,24,39,.18);
    border-radius: 10px;
    font-size: 1rem;
}

.ce-disc-email-message {
    padding: 14px 16px;
    border-radius: 10px;
    background: #f7f3ec;
    color: #071827;
    margin: 16px 0;
}

.ce-disc-email-success {
    background: #ecfdf5;
    color: #065f46;
}

.ce-disc-email-error {
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 760px) {
    #ce-disc-app {
        margin: 24px auto;
        padding: 0 14px;
    }

    .ce-disc-card {
        padding: 24px;
    }

    .ce-disc-two-column {
        grid-template-columns: 1fr;
    }

    .ce-disc-divider {
        display: block;
        opacity: 0;
        height: 6px;
    }
}
