:root {
    --ty-navy: #102a43;
    --ty-navy-2: #0c2236;
    --ty-teal: #16a394;
    --ty-teal-2: #11897c;
    --ty-teal-soft: #e6f6f4;
    --ty-ink: #1f2a37;
    --ty-grey: #5b6677;
    --ty-grey-2: #8a94a3;
    --ty-line: #e4e9f0;
    --ty-bg: #f5f8fc;
    --ty-card: #ffffff;
}

.thank-you-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0;
    background: var(--ty-bg);
    color: var(--ty-ink);
    line-height: 1.6;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.thank-you-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.thank-you-confirm {
    background: var(--ty-card);
    border: 1px solid var(--ty-line);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(16, 42, 67, 0.08);
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 44px;
    text-align: center;
}

.thank-you-tick {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--ty-teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.thank-you-tick svg {
    width: 38px;
    height: 38px;
    stroke: var(--ty-teal);
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: thankYouDraw 0.6s 0.15s ease forwards;
}

@keyframes thankYouDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.thank-you-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ty-teal-2);
    margin-bottom: 12px;
}

.thank-you-confirm h1 {
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
    color: var(--ty-navy);
    line-height: 1.2;
    margin: 0 0 14px;
    font-size: 30px;
}

.thank-you-lede {
    color: var(--ty-grey);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.thank-you-steps {
    text-align: left;
    margin: 34px auto 0;
    max-width: 520px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.thank-you-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.thank-you-number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ty-teal-soft);
    color: var(--ty-teal-2);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-step-title {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ty-ink);
    display: block;
    margin-bottom: 2px;
}

.thank-you-step-description {
    font-size: 13.5px;
    color: var(--ty-grey);
    display: block;
}

.thank-you-step-description a {
    color: var(--ty-teal-2);
    border-bottom: 1px solid rgba(22, 163, 148, 0.35);
}

.thank-you-cta {
    margin: 36px 0 6px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 14.5px;
    padding: 14px 26px;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: 0.18s;
    font-family: inherit;
    text-decoration: none;
}

.thank-you-btn-teal {
    background: var(--ty-teal);
    color: #fff;
}

.thank-you-btn-teal:hover {
    background: var(--ty-teal-2);
    color: #fff;
    transform: translateY(-1px);
}

.thank-you-btn-ghost {
    background: transparent;
    color: var(--ty-navy);
    border-color: var(--ty-line);
}

.thank-you-btn-ghost:hover {
    border-color: var(--ty-teal);
    color: var(--ty-teal-2);
}

.thank-you-btn svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thank-you-reassure {
    font-size: 12.5px;
    color: var(--ty-grey-2);
    margin: 2px 0 0;
}

.thank-you-more {
    border-top: 1px solid var(--ty-line);
    margin-top: 34px;
    padding-top: 24px;
}

.thank-you-more p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ty-grey-2);
    margin: 0 0 14px;
}

.thank-you-more-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-more-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--ty-navy);
    border: 1px solid var(--ty-line);
    border-radius: 20px;
    padding: 8px 16px;
    transition: 0.18s;
    text-decoration: none;
}

.thank-you-more-links a:hover {
    border-color: var(--ty-teal);
    color: var(--ty-teal-2);
    background: var(--ty-teal-soft);
}

.thank-you-talk {
    font-size: 13.5px;
    color: var(--ty-grey);
    margin-top: 26px;
}

.thank-you-talk a {
    color: var(--ty-teal-2);
    font-weight: 600;
}

.thank-you-footer {
    background: var(--ty-navy-2);
    color: #9fb3c9;
    font-size: 12.5px;
    text-align: center;
    padding: 20px 24px;
}

.thank-you-footer a {
    color: #cfe0ee;
    text-decoration: none;
}

.thank-you-footer a:hover {
    color: #fff;
}

.thank-you-header {
    border-bottom: 1px solid var(--ty-line);
    background: var(--ty-card);
}

.thank-you-header-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thank-you-brand {
    font-family: "Lora", Georgia, serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ty-navy);
    letter-spacing: -0.01em;
}

.thank-you-brand span {
    color: var(--ty-teal);
}

.thank-you-home {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ty-grey);
    text-decoration: none;
}

.thank-you-home:hover {
    color: var(--ty-navy);
}

@media (max-width: 560px) {

    .thank-you-header-wrap {
        padding: 14px 20px;
    }

    .thank-you-brand {
        font-size: 18px;
    }

    .thank-you-home {
        font-size: 13px;
    }

}

@media (max-width: 560px) {

    .thank-you-page {
        padding: 36px 0;
    }

    .thank-you-confirm {
        padding: 36px 24px;
        border-radius: 16px;
    }

    .thank-you-confirm h1 {
        font-size: 25px;
    }

    .thank-you-lede {
        font-size: 15px;
    }

    .thank-you-btn {
        width: 100%;
        justify-content: center;
    }

}