.deletion-card {
    max-width: 920px;
}

.eyebrow {
    margin-bottom: 10px !important;
    color: var(--blue-600) !important;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.deletion-section + .deletion-section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.deletion-section h2 {
    margin: 0 0 10px;
    color: var(--ink-900);
    font-size: 20px;
    line-height: 1.45;
}

.deletion-section p {
    margin: 8px 0;
}

.steps {
    margin: 16px 0 0;
    padding-left: 22px;
}

.steps li + li {
    margin-top: 7px;
}

.data-grid,
.balance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.data-grid > div,
.balance-grid > div {
    padding: 20px;
    background: #f8faff;
    border: 1px solid #dfe7f5;
    border-radius: 12px;
}

.request-panel {
    scroll-margin-top: 20px;
}

.section-note {
    color: var(--ink-500);
}

#deleteAccountForm {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.form-field {
    display: grid;
    gap: 7px;
    color: var(--ink-900);
    font-size: 14px;
    font-weight: 650;
}

.form-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    color: var(--ink-900);
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font: inherit;
    font-weight: 400;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-field input:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.action-button {
    min-height: 48px;
    padding: 11px 18px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    transition: opacity .15s ease, transform .15s ease;
}

.action-button:hover {
    transform: translateY(-1px);
}

.action-button:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.primary-action {
    background: var(--blue-600);
}

.danger-action {
    width: 100%;
    margin-top: 20px;
    background: #dc2626;
}

.request-message {
    display: none;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.request-message.visible {
    display: block;
}

.request-message.error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.request-message.success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.eligibility-result {
    margin-top: 22px;
}

.balance-grid strong,
.balance-grid span {
    display: block;
}

.balance-grid span {
    color: var(--ink-500);
    font-size: 13px;
}

.balance-grid strong {
    margin-top: 5px;
    color: var(--ink-900);
    font-size: 22px;
}

.blocker-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.blocker-list li {
    padding: 10px 12px;
    color: #991b1b;
    background: #fef2f2;
    border-radius: 8px;
}

.blocker-list li + li {
    margin-top: 8px;
}

.blocker-list .eligible {
    color: #166534;
    background: #f0fdf4;
}

.check-row {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-top: 18px;
    color: var(--ink-700);
    font-size: 14px;
    line-height: 1.55;
}

.check-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.support-note a {
    color: var(--blue-600);
    font-weight: 650;
}

@media (max-width: 767px) {
    .data-grid,
    .balance-grid {
        grid-template-columns: 1fr;
    }
}
