.thank-you-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 50px 0 70px;
}

.confirm {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.check-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto 26px;
}

.check-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--brand-deep);

    display: flex;
    align-items: center;
    justify-content: center;
}

.check-ring svg {
    width: 38px;
    height: 38px;
}

.check-pulse {
    position: absolute;
    inset: -8px;

    border: 2px solid var(--brand-bright);
    border-radius: 50%;

    opacity: 0;
    animation: check-pulse 1.8s ease-out infinite;
}

@keyframes check-pulse {
    0% {
        opacity: .6;
        transform: scale(.85);
    }

    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

.confirm .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

.confirm h1 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
}

.confirm .lead {
    max-width: 440px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
}

.next-steps {
    margin: 36px 0;
    text-align: left;

    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;

    overflow: hidden;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px 24px;

    border-bottom: 1px solid var(--line);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    flex: 0 0 26px;

    width: 26px;
    height: 26px;
    margin-top: 2px;

    border-radius: 50%;

    background: var(--bg-warm);
    color: var(--brand-deep);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12.5px;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 3px;

    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
}

.step p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.confirm-ctas {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.confirm-ctas .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 24px;

    border: 1px solid var(--gold);
    border-radius: 999px;

    background: var(--gold);
    color: #1C1305;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 4px 0 var(--gold-deep);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.confirm-ctas .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--gold-deep);
}

.confirm-ctas .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 var(--gold-deep);
}

@media (prefers-reduced-motion: reduce) {

    .check-pulse {
        display: none;
        animation: none;
    }

}

@media (max-width: 600px) {

    .thank-you-page {
        min-height: auto;
        padding: 45px 0 60px;
    }

    .confirm {
        max-width: 100%;
    }

    .check-wrap {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }

    .check-ring svg {
        width: 32px;
        height: 32px;
    }


    .confirm h1 {
        font-size: 30px;
    }

    .confirm .lead {
        font-size: 15px;
    }

    .next-steps {
        margin: 30px 0;
    }

    .step {
        padding: 18px;
        gap: 12px;
    }

    .step p {
        font-size: 13px;
    }

    .confirm-ctas {
        margin-top: 26px;
    }

    .confirm-ctas .btn-primary {
        min-height: 46px;
        padding: 11px 22px;
        font-size: 14px;
    }

}