/* == THANKS SCREEN == */
.thanks-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0 3rem;
}

.thanks-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 1.75rem;
}

.thanks-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--navy-soft);
    animation: thanks-ring-pulse 2.4s ease-in-out infinite;
}

@keyframes thanks-ring-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.1); opacity: 0.6; }
}

.thanks-icon {
    position: relative;
    font-size: 5rem;
    color: var(--navy-mid);
    font-variation-settings: 'FILL' 1;
    animation: thanks-icon-pop .5s cubic-bezier(.175,.885,.32,1.275) both;
}

@keyframes thanks-icon-pop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.thanks-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.thanks-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto 1.75rem;
}

.thanks-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem 1.25rem;
    background: var(--cyan-light);
    border: 1px solid rgba(0,168,232,0.2);
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    margin-bottom: 2rem;
    text-align: left;
}

    .thanks-notice .material-symbols-outlined {
        font-size: 1.25rem;
        color: var(--cyan-dark);
        flex-shrink: 0;
        margin-top: 0.05rem;
        font-variation-settings: 'FILL' 1;
    }

    .thanks-notice p {
        margin: 0;
        font-size: 0.87rem;
        color: var(--cyan-dark);
        line-height: 1.55;
    }

.thanks-next {
    width: 100%;
    max-width: 480px;
    text-align: left;
    margin-bottom: 1.75rem;
}

.thanks-next-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

    .thanks-next-label .material-symbols-outlined {
        font-size: 1rem;
    }

.thanks-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

    .thanks-timeline li {
        display: flex;
        gap: 1rem;
        position: relative;
    }

        .thanks-timeline li:not(:last-child)::after {
            content: '';
            position: absolute;
            inset-inline-start: 9px;
            top: 22px;
            bottom: -8px;
            width: 2px;
            background: var(--surface-high);
        }

        .thanks-timeline li + li {
            margin-top: 0.5rem;
        }

        .thanks-timeline li .thanks-timeline-content {
            padding-bottom: 0.75rem;
        }

.thanks-timeline-dot {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--navy-soft);
    border: 2px solid var(--navy-mid);
    margin-top: 2px;
}

.thanks-timeline-dot--last {
    background: var(--navy-mid);
}

.thanks-timeline-title {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.thanks-timeline-content p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.thanks-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

    .thanks-note .material-symbols-outlined {
        font-size: 0.95rem;
    }

@media (max-width: 575px) {
    .thanks-title {
        font-size: 1.4rem;
    }

    .thanks-icon {
        font-size: 4rem;
    }

    .thanks-icon-wrap {
        width: 72px;
        height: 72px;
    }
}
