.ascent {
    --ascent-navy: #0c2038;
    --ascent-deep: #102944;
    --ascent-ice: #6bb3fb;
    --ascent-text: #f3f8fe;
    --ascent-muted: #b3c8dd;
    --ascent-line: #1d4a73;
    color: var(--ascent-text);
    max-width: none;
}

.ascent-kicker {
    margin: 0 0 6px;
    color: var(--ascent-ice);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ascent h1,
.ascent h2,
.ascent h3 {
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
}

.ascent--account {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ascent-pagehead { margin: 0 0 2px; }
.ascent-pagehead h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 6px;
}

.ascent-pagehead p {
    margin: 0;
    color: var(--ascent-muted);
    font-size: 15px;
}

.ascent-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 24px;
    padding: 22px 24px;
    background: var(--ascent-deep);
    border: 1px solid var(--ascent-line);
    border-radius: 14px;
}

.ascent-summary__main h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
}

.ascent-summary__earned,
.ascent-summary__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--ascent-muted);
    font-size: 14px;
}

.ascent-summary__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7dcea0;
    flex-shrink: 0;
}

.ascent-summary__points {
    text-align: right;
    align-self: start;
}

.ascent-summary__number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.ascent-summary__number--pending {
    color: var(--ascent-muted);
}

.ascent-summary__pts-label {
    display: block;
    margin-top: 6px;
    color: var(--ascent-muted);
    font-size: 13px;
}

.ascent-summary__meter {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.ascent-summary__meter-copy {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 10px;
    color: var(--ascent-muted);
    font-size: 13px;
}

.ascent-progress {
    height: 6px;
    border-radius: 999px;
    background: #173653;
    overflow: hidden;
}

.ascent-progress span {
    display: block;
    height: 100%;
    background: var(--ascent-ice);
    border-radius: inherit;
}

.ascent-climb {
    list-style: none;
    margin: 0;
    padding: 4px 0 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    position: relative;
}

.ascent-climb::before,
.ascent-climb::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 7px;
    height: 2px;
    border-radius: 2px;
    z-index: 0;
}
.ascent-climb::before { background: #1d4a73; }
.ascent-climb::after {
    right: auto;
    width: calc(80% * var(--ascent-climb-fill, 0) / 100);
    background: var(--ascent-ice);
}

.ascent-climb__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: var(--ascent-muted);
    min-width: 0;
}

.ascent-climb__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3a5d80;
    border: 2px solid #0c2038;
    box-sizing: border-box;
}

.ascent-climb__step.is-earned { color: #d7e6f5; }
.ascent-climb__step.is-earned .ascent-climb__dot { background: var(--ascent-ice); }
.ascent-climb__step.is-current { color: #fff; font-weight: 700; }
.ascent-climb__step.is-current .ascent-climb__dot {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107, 179, 251, 0.28);
}
.ascent-climb__name {
    font-size: 13px;
    line-height: 1.25;
}
.ascent-climb__pts { font-size: 12px; color: #7fa8c9; }

.ascent-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    vertical-align: middle;
}
.ascent-badge--elite {
    border: 1px solid var(--ascent-ice);
    color: var(--ascent-ice);
}
.ascent-climb__step.is-elite.is-earned .ascent-climb__dot,
.ascent-climb__step.is-elite.is-current .ascent-climb__dot {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107, 179, 251, 0.35);
}

.ascent-next {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 16px 20px;
    align-items: center;
    padding: 18px 20px;
    background: var(--ascent-deep);
    border: 1px solid var(--ascent-line);
    border-radius: 14px;
}
.ascent-next h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}
.ascent-next p {
    margin: 0;
    color: var(--ascent-muted);
    font-size: 14px;
}
.ascent-next__visual {
    display: flex;
    gap: 8px;
}
.ascent-next__thumb,
.ascent-next__thumb img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    background: #081d35;
    border-radius: 10px;
}

.ascent-bonus {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    background: rgba(16, 41, 68, 0.72);
    border: 1px solid var(--ascent-line);
    border-radius: 10px;
}
.ascent-bonus__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ascent-bonus__copy strong {
    color: #fff;
    font-size: 13px;
}
.ascent-bonus__copy span {
    color: var(--ascent-muted);
    font-size: 13px;
}
.ascent-progress--slim {
    flex: 1 1 140px;
    height: 4px;
    min-width: 80px;
}
.ascent-bonus__link {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ascent-ice);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}

.ascent-sectionhead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
}

.ascent-sectionhead h2 {
    font-size: 20px;
    font-weight: 700;
}

.ascent-sectionhead p {
    margin: 0;
    color: var(--ascent-muted);
    font-size: 13px;
}

.ascent-banner {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(16, 41, 68, 0.9);
    border: 1px solid var(--ascent-line);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--ascent-muted);
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.45;
}

.ascent-empty,
.ascent-fineprint {
    margin: 0;
    color: var(--ascent-muted);
    font-size: 14px;
}

.ascent-fineprint { margin-top: 14px; }

.ascent-giftlist {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ascent-line);
}

.ascent-gift {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 88px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ascent-line);
}
.ascent-gift.is-settled {
    grid-template-columns: 64px minmax(0, 1fr);
}

.ascent-gift__thumb,
.ascent-gift__thumb img,
.ascent-gift__ph,
.ascent-option__thumb,
.ascent-option__thumb img,
.ascent-option__ph {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    display: block;
}

.ascent-gift__thumb,
.ascent-option__thumb {
    flex-shrink: 0;
    background: #081d35;
    border-radius: 10px;
    overflow: hidden;
}

.ascent-gift__ph,
.ascent-option__ph {
    background: #0b2744;
    border-radius: 10px;
}

.woocommerce-account .ascent-gift img,
.woocommerce-account .ascent-option img,
.ascent--account img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
}

.ascent-gift__copy { min-width: 0; }
.ascent-gift__copy h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
}
.ascent-gift__count {
    margin: 0;
    color: #fff;
    font-size: 13px;
}
.ascent-gift__examples {
    margin: 2px 0 0;
    color: var(--ascent-muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.ascent-gift__btn,
.ascent-dialog__confirm,
.ascent-morebtn,
.ascent-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 0;
    background: #e8f3ff;
    color: #011a2e;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.ascent-gift__btn:focus-visible,
.ascent-dialog__confirm:focus-visible,
.ascent-dialog__close:focus-visible,
.ascent-option:focus-visible,
.ascent-morebtn:focus-visible,
.ascent-details summary:focus-visible,
.ascent-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.ascent-morebtn {
    margin-top: 12px;
    background: transparent;
    color: var(--ascent-ice);
    border: 1px solid var(--ascent-line);
}

.ascent-activity__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ascent-activity__list li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) auto auto;
    gap: 10px 14px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--ascent-line);
}

.ascent-activity__mark {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 2px;
    background: #3a5d80;
}

.ascent-activity__title {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.ascent-activity__detail {
    margin: 2px 0 0;
    color: var(--ascent-muted);
    font-size: 13px;
}

.ascent-activity__amount {
    color: var(--ascent-ice);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.ascent-activity time {
    color: #7fa8c9;
    font-size: 13px;
    white-space: nowrap;
}

.ascent-details {
    border: 0;
    border-top: 1px solid var(--ascent-line);
    background: transparent;
    padding: 0;
}

.ascent-details summary {
    list-style: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.ascent-details summary::-webkit-details-marker { display: none; }
.ascent-details summary svg {
    flex-shrink: 0;
    color: var(--ascent-muted);
    transition: transform .15s;
}
.ascent-details[open] summary svg { transform: rotate(180deg); }

.ascent-details ul {
    margin: 0;
    padding: 0 0 12px;
    list-style: disc;
    padding-left: 18px;
    color: var(--ascent-muted);
}

.ascent-details li { margin: 0 0 8px; }

.ascent-dialog {
    width: min(720px, calc(100vw - 24px));
    max-height: min(88vh, 760px);
    padding: 0;
    border: 1px solid var(--ascent-line);
    border-radius: 16px;
    background: #0b1c30;
    color: var(--ascent-text);
}

.ascent-dialog::backdrop {
    background: rgba(4, 12, 22, 0.72);
}

.ascent-dialog__panel {
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 760px);
}

.ascent-dialog__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 12px;
}

.ascent-dialog__head h2 { font-size: 22px; }
.ascent-dialog__sub,
.ascent-dialog__gate {
    margin: 6px 0 0;
    color: var(--ascent-muted);
    font-size: 14px;
}

.ascent-dialog__gate {
    margin: 0 20px 8px;
}

.ascent-dialog__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #102944;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.ascent-dialog__body {
    overflow: auto;
    padding: 0 20px 12px;
}

.ascent-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ascent-option {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 10px;
    border: 1px solid var(--ascent-line);
    border-radius: 12px;
    background: #081d35;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.ascent-option.is-selected {
    border-color: var(--ascent-ice);
    box-shadow: 0 0 0 1px var(--ascent-ice);
}

.ascent-option.is-unavailable {
    opacity: 0.62;
    cursor: default;
}

.ascent-option__copy { min-width: 0; }
.ascent-option__name {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    overflow-wrap: anywhere;
}
.ascent-option__meta {
    display: block;
    margin-top: 3px;
    color: var(--ascent-muted);
    font-size: 12px;
}

.ascent-dialog__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px 18px;
    border-top: 1px solid var(--ascent-line);
}

.ascent-dialog__live {
    margin: 0;
    color: var(--ascent-muted);
    font-size: 13px;
}
.ascent-dialog__live.is-error { color: #f3b4b4; }

.ascent-hero,
.ascent-panel {
    background: linear-gradient(180deg, #0d2a4a 0%, var(--ascent-navy) 100%);
    border: 1px solid #0a5a9e;
    border-radius: 16px;
    padding: 22px 20px;
    margin: 0 0 18px;
}

.ascent--public .ascent-lead { color: var(--ascent-muted); margin: 0 0 16px; }
.ascent-ladder { padding-left: 18px; }
.ascent-ladder li { margin: 0 0 8px; }
.ascent-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.ascent-card {
    background: #081d35;
    border: 1px solid #16497a;
    border-radius: 12px;
    padding: 12px;
}
.ascent-card__name { color: #fff; font-weight: 700; margin: 0 0 4px; }
.ascent-card__meta { color: var(--ascent-muted); font-size: 13px; margin: 0; }

@media (max-width: 1100px) {
    .ascent-climb {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px 8px;
    }
    .ascent-climb::before,
    .ascent-climb::after {
        display: none;
    }
}

@media (max-width: 720px) {
    .ascent--account { gap: 20px; }
    .ascent-pagehead h1 { font-size: 26px; }
    .ascent-pagehead p { font-size: 14px; }
    .ascent-summary {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }
    .ascent-summary__main h2 { font-size: 26px; }
    .ascent-summary__number { font-size: 36px; }
    .ascent-summary__points { text-align: left; }
    .ascent-summary__meter-copy { flex-direction: column; gap: 4px; }
    .ascent-climb {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 4px;
    }
    .ascent-climb::before,
    .ascent-climb::after {
        left: 6px;
        right: auto;
        top: 8px;
        bottom: 8px;
        width: 2px;
        height: auto;
    }
    .ascent-climb::after {
        width: 2px;
        height: calc((100% - 16px) * var(--ascent-climb-fill, 0) / 100);
    }
    .ascent-climb__step {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        text-align: left;
        min-height: 44px;
        padding: 6px 0;
    }
    .ascent-climb__name { font-size: 14px; }
    .ascent-gift {
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 0;
        padding: 12px 0;
    }
    .ascent-gift__thumb,
    .ascent-gift__thumb img,
    .ascent-gift__ph {
        width: 48px !important;
        height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }
    .ascent-gift__btn {
        grid-column: 2;
        justify-self: start;
        margin-top: 4px;
    }
    .ascent-activity__list li {
        grid-template-columns: 16px minmax(0, 1fr);
    }
    .ascent-activity__amount,
    .ascent-activity time {
        grid-column: 2;
    }
    .ascent-options { grid-template-columns: 1fr; }
    .ascent-dialog {
        width: 100vw;
        max-width: 100vw;
        height: min(92vh, 100%);
        max-height: 92vh;
        margin: auto 0 0;
        border-radius: 16px 16px 0 0;
    }
    .ascent-dialog__panel { max-height: 92vh; }
    .ascent-dialog__foot { flex-wrap: wrap; }
    .ascent-cards { grid-template-columns: 1fr; }
    .ascent-next {
        grid-template-columns: minmax(0, 1fr);
    }
    .ascent-bonus {
        flex-wrap: wrap;
    }
    .ascent-progress--slim {
        flex: 1 1 100%;
        order: 3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ascent * { transition: none !important; }
}

.woocommerce-account .ascent { width: 100%; }
.everest-ascent-page .ascent--public { margin: 24px auto 64px; padding: 0 16px; }

body.logged-in .ascent-cta--guest { display: none !important; }
body:not(.logged-in) .ascent-cta--member { display: none !important; }

body.everest-ascent-landing {
    overflow-x: clip;
}
body.everest-ascent-landing .prose,
body.everest-ascent-landing article.prose {
    max-width: none;
}

.everest-ascent-landing-shell {
    background: #0a1628;
}

.ascent--landing {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    padding: 28px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ascent--landing h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
}

.ascent--landing h2 {
    font-size: 28px;
    font-weight: 800;
}

.ascent-land-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px 48px;
    align-items: center;
}

.ascent-land-hero--copy {
    display: block;
    max-width: 40em;
}

.ascent-land-lead {
    max-width: 36em;
    margin: 16px 0 0;
    color: var(--ascent-muted);
    font-size: 17px;
    line-height: 1.55;
}

.ascent-land-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ascent--landing .ascent-cta {
    min-height: 48px;
    padding: 12px 22px;
    font-size: 15px;
}

.ascent-cta--ghost {
    background: transparent;
    color: #e8f3ff;
    border: 1px solid var(--ascent-line);
}

.ascent-value {
    padding: 24px 26px;
    border: 1px solid var(--ascent-line);
    border-radius: 16px;
    background: linear-gradient(180deg, #14365a 0%, #102944 100%);
}

.ascent-value h2 {
    margin: 0 0 10px;
}

.ascent-value p {
    margin: 0;
    max-width: 46em;
    color: var(--ascent-muted);
    font-size: 17px;
    line-height: 1.55;
}

.ascent-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ascent-facts li {
    padding: 14px 16px;
    border: 1px solid var(--ascent-line);
    border-radius: 12px;
    background: #102944;
    color: #d7e6f5;
    font-size: 14px;
    line-height: 1.4;
}

.ascent-land-head {
    max-width: 40em;
    margin: 0 0 22px;
}

.ascent-land-head p,
.ascent-land-note,
.ascent-continue p,
.ascent-land-cta p,
.ascent-faq p {
    margin: 8px 0 0;
    color: var(--ascent-muted);
    font-size: 16px;
    line-height: 1.55;
}

.ascent-tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ascent-tier {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 240px;
    padding: 18px 18px 16px;
    background: #102944;
    border: 1px solid var(--ascent-line);
    border-radius: 16px;
}

.ascent-tier--simple {
    min-height: 0;
    gap: 6px;
    padding: 20px 18px;
}

.ascent-tier--featured {
    border-color: #6bb3fb;
    box-shadow: inset 0 0 0 1px rgba(107, 179, 251, 0.18);
}

.ascent-tier--elite {
    background: linear-gradient(180deg, #15385c 0%, #102944 100%);
}

.ascent-tier__head h3 {
    font-size: 20px;
    font-weight: 800;
}

.ascent-tier__pts,
.ascent-tier__gifts,
.ascent-tier__more {
    margin: 4px 0 0;
    color: var(--ascent-muted);
    font-size: 13px;
}

.ascent-tier__gifts {
    color: #e8f3ff;
    font-weight: 700;
}

.ascent-tier__products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.ascent-tier__product {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.ascent-tier__thumb,
.ascent-tier__thumb img,
.ascent-tier__ph {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    object-fit: contain !important;
    background: #081d35;
    border-radius: 10px;
}

.ascent-tier__pname {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.ascent-tier .ascent-gift__btn {
    align-self: flex-start;
}

.ascent-continue {
    padding: 22px 24px;
    border: 1px solid var(--ascent-line);
    border-radius: 16px;
    background: #0d2744;
}

.ascent-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ascent-steps li {
    padding: 18px;
    background: #102944;
    border: 1px solid var(--ascent-line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ascent-steps strong { color: #fff; font-size: 17px; }
.ascent-steps span { color: var(--ascent-muted); font-size: 14px; line-height: 1.45; }

.ascent-faq details {
    border-bottom: 1px solid var(--ascent-line);
    padding: 4px 0;
}

.ascent-faq summary {
    list-style: none;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.ascent-faq summary::-webkit-details-marker { display: none; }
.ascent-faq summary::after {
    content: "+";
    color: var(--ascent-ice);
    font-weight: 500;
}
.ascent-faq details[open] summary::after { content: "–"; }
.ascent-faq p { padding-bottom: 12px; }

.ascent-land-cta {
    text-align: center;
    padding: 28px 24px;
    border: 1px solid var(--ascent-line);
    border-radius: 16px;
    background: linear-gradient(180deg, #123252 0%, #0c2038 100%);
}

.ascent-land-cta .ascent-land-hero__actions {
    justify-content: center;
}

@media (max-width: 980px) {
    .ascent-land-hero,
    .ascent-steps,
    .ascent-facts {
        grid-template-columns: 1fr;
    }
    .ascent-tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ascent--landing h1 { font-size: 44px; }
}

@media (max-width: 720px) {
    .ascent--landing {
        width: calc(100% - 32px);
        padding: 16px 0 64px;
        gap: 28px;
    }
    .ascent--landing h1 { font-size: 36px; }
    .ascent-land-lead { font-size: 16px; }
    .ascent-land-hero { gap: 18px; }
    .ascent-tiers { grid-template-columns: 1fr; }
    .ascent-tier {
        min-height: 0;
    }
    .ascent-tier--simple {
        display: flex;
    }
}

@media (max-width: 360px) {
    .ascent--landing h1 { font-size: 34px; }
    .ascent-cta { width: 100%; }
}
