.main {
    margin-top: 6.875rem;
    padding-bottom: 0;
}

.cs_page {
    position: relative;
    min-height: calc(100vh - 6.875rem - 5.3125rem);
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--Foundation-Green-Light, #e6f4ec) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.cs_bg_pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(1, 81, 33, 0.08) 0, transparent 38%),
        radial-gradient(circle at 85% 80%, rgba(1, 81, 33, 0.10) 0, transparent 42%),
        linear-gradient(rgba(1, 81, 33, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 81, 33, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 4rem 4rem, 4rem 4rem;
    pointer-events: none;
    z-index: 0;
}

.cs_container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.125rem;
    background: #ffffff;
    border: 1px solid var(--Foundation-Green-green-200, #8aaf99);
    border-radius: 6.25rem;
    color: var(--Foundation-Green-green-500, #015121);
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 120%;
    box-shadow: 0 0.25rem 1.25rem rgba(1, 81, 33, 0.08);
}

.cs_badge_dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--Foundation-Green-green-500, #015121);
    box-shadow: 0 0 0 0.25rem rgba(1, 81, 33, 0.18);
    animation: cs_pulse 1.8s ease-in-out infinite;
}

@keyframes cs_pulse {
    0%, 100% { box-shadow: 0 0 0 0.25rem rgba(1, 81, 33, 0.18); }
    50%      { box-shadow: 0 0 0 0.5rem  rgba(1, 81, 33, 0.05); }
}

.cs_title {
    margin-top: 1.875rem;
    color: var(--Foundation-Green-green-500, #015121);
    font-family: "Inter", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -0.06rem;
    background: linear-gradient(180deg, #015121 0%, #0e562c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs_subtitle {
    margin-top: 1.25rem;
    max-width: 42rem;
    color: var(--greyscaletext-60-secondary, #3f3f3f);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 160%;
}

.cs_countdown {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cs_count_item {
    width: 7rem;
    background: #ffffff;
    border: 1px solid rgba(1, 81, 33, 0.12);
    border-radius: 1rem;
    padding: 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0.625rem 1.875rem rgba(1, 81, 33, 0.08);
}

.cs_count_num {
    color: var(--Foundation-Green-green-500, #015121);
    font-family: "Inter", sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 100%;
    font-variant-numeric: tabular-nums;
}

.cs_count_label {
    color: var(--greyscaletext-40-tag, #6a6a6a);
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs_count_sep {
    color: var(--Foundation-Green-green-200, #8aaf99);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.cs_actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cs_footer_note {
    margin-top: 2.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--greyscaletext-40-tag, #6a6a6a);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
}

.cs_footer_note a {
    color: var(--Foundation-Green-green-500, #015121);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

@media (max-width: 767px) {
    .cs_page {
        padding: 3rem 1rem;
        min-height: calc(100vh - 6.875rem);
    }
    .cs_bg_pattern {
        background-size: auto, auto, 2.5rem 2.5rem, 2.5rem 2.5rem;
    }
    .cs_title {
        margin-top: 1.5rem;
        font-size: 3rem;
    }
    .cs_subtitle {
        font-size: 1rem;
    }
    .cs_countdown {
        margin-top: 2rem;
        gap: 0.375rem;
    }
    .cs_count_item {
        width: calc((100% - 1.5rem) / 4);
        min-width: 4.25rem;
        padding: 0.875rem 0.25rem;
        border-radius: 0.75rem;
    }
    .cs_count_num {
        font-size: 1.5rem;
    }
    .cs_count_label {
        font-size: 0.6875rem;
    }
    .cs_count_sep {
        display: none;
    }
    .cs_actions {
        margin-top: 2rem;
        width: 100%;
        flex-direction: column;
    }
    .cs_actions .button--init {
        width: 100%;
    }
}
