/*
 * Marketing theme layer
 * Loaded only on the home and promotion flows so page-specific presentation
 * stays separate from the shared site-wide UI layer.
 */

:root {
    --theme-card-border: rgba(214, 197, 148, 0.18);
    --theme-card-bg: linear-gradient(180deg, rgba(28, 37, 29, 0.6), rgba(22, 31, 24, 0.46));
    --theme-card-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    --theme-card-hover-border: rgba(214, 195, 143, 0.34);
    --theme-card-hover-bg: linear-gradient(180deg, rgba(33, 43, 34, 0.78), rgba(19, 28, 21, 0.62));
    --theme-card-hover-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    --theme-panel-bg: linear-gradient(180deg, rgba(24, 33, 25, 0.74), rgba(15, 22, 17, 0.58));
    --theme-panel-fill: rgba(18, 28, 21, 0.68);
    --theme-copy: #f6f3e8;
    --theme-copy-strong: #fff7e6;
    --theme-copy-muted: #d8d2c0;
    --theme-copy-muted-strong: #ece4d0;
    --theme-copy-accent: #d6c38f;
    --theme-copy-accent-soft: #f1deb2;
}

/* Landing homepage */

.landing-page {
    gap: 30px;
}

.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 38px 34px 34px;
    border-color: rgba(214, 197, 148, 0.18);
    background:
        radial-gradient(circle at 16% 14%, rgba(214, 195, 143, 0.16), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(111, 171, 139, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(18, 28, 21, 0.98), rgba(8, 13, 10, 0.98));
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.015) 58%, rgba(255, 255, 255, 0) 100%);
}

.landing-hero > * {
    position: relative;
    z-index: 1;
}

.landing-hero-shell,
.promotion-hero-shell {
    display: grid;
    gap: 34px;
    align-items: stretch;
}

.landing-hero-shell {
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1.66fr);
}

.promotion-hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
}

.landing-hero-main {
    display: grid;
    gap: 18px;
    align-content: center;
    justify-items: center;
    text-align: center;
    align-self: center;
}

.promotion-hero-main {
    display: grid;
    gap: 20px;
    justify-items: center;
    text-align: center;
}

.promotion-hero .hero-copy p,
.promotion-hero-main p {
    max-width: 58ch;
    margin: 0 auto;
}

.landing-hero-product .landing-hero-main {
    gap: 22px;
}

.landing-product-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    align-items: center;
    width: 100%;
}

.hero-stats-bar-product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 300px);
}

.hero-stat-pill-product {
    position: relative;
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 20px 18px 17px;
    border: 1px solid rgba(214, 195, 143, 0.2);
    border-radius: 24px;
    background:
        radial-gradient(circle at top center, rgba(214, 195, 143, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(22, 34, 25, 0.88), rgba(10, 16, 12, 0.8));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 22px 44px rgba(0, 0, 0, 0.2);
}

.hero-stat-pill-product strong {
    display: block;
    margin: 0;
    color: var(--theme-copy-strong);
    font: 700 clamp(1.9rem, 3vw, 2.7rem)/0.94 Bahnschrift, "Arial Narrow", sans-serif;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.hero-stat-pill-product span {
    display: block;
    color: var(--theme-copy-accent);
    font: 700 0.76rem/1.1 Bahnschrift, "Arial Narrow", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-hero-pills,
.promotion-inline-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.landing-hero-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--theme-card-border);
    border-radius: 999px;
    background: rgba(214, 195, 143, 0.08);
    color: var(--theme-copy-accent-soft);
    font: 700 0.82rem/1 Bahnschrift, "Arial Narrow", sans-serif;
    letter-spacing: 0.03em;
}

.landing-hero-side,
.promotion-hero-side {
    display: grid;
    justify-items: center;
}

.landing-preview-panel,
.promotion-hero-visual {
    width: min(100%, 430px);
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    padding: 28px;
    border: 1px solid var(--theme-card-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at top center, rgba(255, 240, 199, 0.08), transparent 34%),
        var(--theme-panel-bg);
    box-shadow: var(--theme-card-shadow);
}

.landing-hero-logo,
.promotion-hero-logo {
    display: block;
    width: clamp(110px, 22vw, 150px);
    height: auto;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.26));
}

.landing-preview-copy,
.promotion-preview-copy {
    display: grid;
    gap: 8px;
}

.landing-preview-copy strong,
.promotion-preview-copy strong,
.landing-card-kicker {
    font-family: Bahnschrift, "Arial Narrow", sans-serif;
}

.landing-preview-copy strong,
.promotion-preview-copy strong {
    color: var(--theme-copy-strong);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.landing-preview-copy span,
.promotion-preview-copy span {
    max-width: 34ch;
    color: var(--theme-copy-muted);
}

.landing-preview-grid,
.promotion-hero-mini-grid {
    display: grid;
    width: 100%;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-preview-card,
.promotion-hero-mini-card {
    display: grid;
    gap: 6px;
    padding: 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--theme-transition);
}

.landing-preview-card strong,
.promotion-hero-mini-card strong {
    color: var(--theme-copy-strong);
    font: 700 0.96rem/1.2 Bahnschrift, "Arial Narrow", sans-serif;
}

.landing-preview-card span,
.promotion-hero-mini-card span {
    color: var(--theme-copy-muted);
    font-size: 0.9rem;
}

.landing-preview-card:hover,
.promotion-hero-mini-card:hover {
    transform: translateY(-4px);
    border-color: var(--theme-card-hover-border);
    background: rgba(255, 255, 255, 0.06);
}

.landing-section {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-color: rgba(214, 195, 143, 0.16);
    background:
        radial-gradient(circle at top center, rgba(214, 195, 143, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(18, 28, 21, 0.94), rgba(10, 16, 12, 0.98));
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.landing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%),
        radial-gradient(circle at 50% 0, rgba(214, 195, 143, 0.06), transparent 40%);
}

.landing-section > * {
    position: relative;
    z-index: 1;
}

.landing-launcher-showcase {
    display: grid;
    align-self: stretch;
    min-height: 100%;
}

.landing-launcher-frame {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100%;
    padding: 3px;
    border: 1px solid rgba(214, 195, 143, 0.22);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(23, 34, 26, 0.82), rgba(12, 18, 14, 0.88));
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.landing-launcher-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
        radial-gradient(circle at top center, rgba(214, 195, 143, 0.08), transparent 48%);
}

.landing-launcher-image-shell {
    width: 100%;
    display: flex;
    flex: 1 1 auto;
    min-height: 100%;
}

.landing-launcher-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.landing-download-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.landing-launcher-button {
    min-width: 280px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid rgba(214, 195, 143, 0.32);
    border-radius: 999px;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(244, 225, 178, 0.98), rgba(214, 195, 143, 0.94));
    color: #161712;
    font: 700 0.92rem/1 Bahnschrift, "Arial Narrow", sans-serif;
    letter-spacing: 0.12em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 16px 28px rgba(0, 0, 0, 0.18);
}

.landing-launcher-button::before {
    content: "\2193";
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
}

.landing-launcher-button:hover {
    border-color: rgba(255, 239, 200, 0.76);
    background: linear-gradient(135deg, rgba(255, 236, 192, 1), rgba(226, 204, 147, 0.98));
    color: #0f110f;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        0 20px 34px rgba(0, 0, 0, 0.2);
}

.landing-launcher-button.is-disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.68;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 10px 18px rgba(0, 0, 0, 0.16);
}

.landing-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid var(--theme-card-border);
    border-radius: 999px;
    color: var(--theme-copy-accent-soft);
    background: rgba(214, 195, 143, 0.08);
    font: 700 0.74rem/1 Bahnschrift, "Arial Narrow", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-choice-card,
.landing-feature-card,
.landing-trust-stat,
.promotion-path-card,
.promotion-booking-card,
.promotion-tier-card,
.promotion-faq-card,
.promotion-timeline-card,
.promotion-choice-card,
.promotion-addon-card {
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.landing-choice-card::before,
.landing-feature-card::before,
.landing-trust-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 195, 143, 0.38), transparent);
    pointer-events: none;
}

.landing-choice-card,
.landing-feature-card,
.landing-trust-stat,
.promotion-path-card,
.promotion-booking-card,
.promotion-tier-card,
.promotion-faq-card,
.promotion-timeline-card,
.promotion-choice-card,
.promotion-addon-card {
    border-color: var(--theme-card-border);
    background: var(--theme-card-bg);
    box-shadow: var(--theme-card-shadow);
}

.landing-choice-card,
.landing-feature-card,
.landing-trust-stat {
    border-color: rgba(214, 195, 143, 0.16);
    background: linear-gradient(180deg, rgba(18, 29, 22, 0.92), rgba(10, 17, 13, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 24px 52px rgba(0, 0, 0, 0.22);
}

.landing-choice-card,
.landing-feature-card,
.promotion-path-card,
.promotion-booking-card,
.promotion-tier-card,
.promotion-faq-card,
.promotion-timeline-card,
.promotion-choice-card {
    justify-items: center;
    text-align: center;
}

.landing-choice-card,
.landing-feature-card {
    display: grid;
    gap: 16px;
    align-content: start;
}

.landing-choice-card {
    min-height: 100%;
    padding: 34px 30px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top center, rgba(214, 195, 143, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(18, 29, 22, 0.94), rgba(10, 17, 13, 0.86));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 26px 54px rgba(0, 0, 0, 0.22);
}

.landing-feature-card {
    padding: 30px 24px 26px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top center, rgba(214, 195, 143, 0.06), transparent 30%),
        linear-gradient(180deg, rgba(18, 28, 21, 0.9), rgba(11, 18, 14, 0.82));
}

.landing-choice-card p,
.landing-feature-card p,
.promotion-path-summary,
.promotion-booking-card p,
.promotion-tier-card p,
.promotion-faq-card p,
.promotion-timeline-card p,
.promotion-choice-card p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    color: var(--theme-copy-muted);
}

.landing-choice-card h3,
.landing-feature-card h3,
.landing-trust-stat strong,
.promotion-booking-card h3,
.promotion-tier-card strong,
.promotion-faq-card h3,
.promotion-timeline-card h3,
.promotion-choice-card strong,
.promotion-summary-copy h2,
.promotion-review-card h2,
.promotion-empty-state h1 {
    color: var(--theme-copy-strong);
}

.landing-choice-card:hover,
.landing-feature-card:hover,
.landing-trust-stat:hover,
.promotion-path-card:hover,
.promotion-booking-card:hover,
.promotion-tier-card:hover,
.promotion-faq-card:hover,
.promotion-timeline-card:hover,
.promotion-choice-card:hover,
.promotion-addon-card:hover {
    transform: translateY(-8px);
    border-color: var(--theme-card-hover-border);
    background: linear-gradient(180deg, rgba(22, 34, 26, 0.95), rgba(11, 19, 14, 0.88));
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.landing-choice-icon,
.landing-feature-icon,
.landing-feature-icon.is-owner,
.landing-fair-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 26px rgba(0, 0, 0, 0.16);
}

.landing-choice-icon.is-player,
.landing-feature-icon {
    color: #b7e8bf;
    background: linear-gradient(180deg, rgba(20, 41, 28, 0.94), rgba(15, 31, 21, 0.82));
    border-color: rgba(119, 175, 123, 0.28);
}

.landing-choice-icon.is-owner,
.landing-feature-icon.is-owner,
.landing-fair-icon {
    color: #ffd88c;
    background: var(--theme-gold-bg);
    border-color: var(--theme-gold-border);
}

.landing-check-list,
.landing-check-inline {
    gap: 12px;
}

.landing-choice-list {
    width: 100%;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 10px 0 24px;
    list-style: none;
}

.landing-choice-list li {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--theme-copy-muted-strong);
    font: 600 1rem/1.35 Candara, "Segoe UI Variable Text", sans-serif;
}

.landing-choice-list li::before {
    content: none !important;
    display: none !important;
}

.landing-check-list li,
.landing-check-inline li {
    padding-left: 0;
    text-align: center;
    color: var(--theme-copy-muted-strong);
}

.landing-check-list li::before,
.landing-check-inline li::before {
    content: "\2022";
    position: static;
    display: block;
    margin-bottom: 6px;
    color: #b7e8bf;
}

.landing-check-list.is-owner li::before {
    color: #ffd88c;
}

.landing-button-wide {
    align-self: center;
    min-width: min(100%, 260px);
}

.landing-choice-action {
    margin-top: auto;
    min-width: min(100%, 260px);
    border-color: rgba(214, 195, 143, 0.18);
    background: linear-gradient(180deg, rgba(13, 20, 15, 0.92), rgba(9, 14, 11, 0.98));
    color: var(--theme-copy-muted-strong);
    box-shadow: none;
}

.landing-choice-card:hover .landing-choice-action,
.landing-choice-card:focus-within .landing-choice-action {
    color: var(--theme-copy-strong);
    transform: translateY(0);
    border-color: rgba(119, 175, 123, 0.34);
    background: linear-gradient(180deg, rgba(22, 40, 27, 0.98), rgba(13, 24, 16, 0.98));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

#server-owners:hover .landing-choice-action,
#server-owners:focus-within .landing-choice-action {
    border-color: rgba(243, 191, 82, 0.42);
    background: linear-gradient(135deg, rgba(255, 216, 140, 0.96), rgba(243, 191, 82, 0.94));
    color: #0f1112;
}

.landing-step-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.landing-step-item {
    padding: 20px 18px;
    border: 1px solid var(--theme-card-border);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(18, 29, 22, 0.82), rgba(11, 17, 14, 0.74));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.landing-step-arrow {
    display: none;
}

.landing-steps-card,
.landing-ready,
.promotion-hero,
.promotion-summary-strip,
.promotion-inline-note,
.promotion-step-shell,
.promotion-ready-card {
    border-color: rgba(243, 191, 82, 0.16);
    background:
        radial-gradient(circle at top center, rgba(214, 195, 143, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(18, 28, 21, 0.96), rgba(10, 16, 12, 0.98));
}

.landing-download-cta p,
.landing-muted,
.landing-ready-copy {
    color: var(--theme-copy-muted);
}

.landing-download-cta {
    display: grid;
    gap: 16px;
    justify-items: center;
    margin-top: 24px;
    text-align: center;
}

.landing-trust-stat strong {
    color: var(--theme-copy-strong);
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.landing-trust-stat span {
    color: var(--theme-copy-accent);
}

.landing-ready-copy {
    margin: 0 auto;
    max-width: 54ch;
}

.landing-ready-shell {
    display: grid;
    gap: 22px;
    justify-items: center;
    text-align: center;
}

.landing-ready-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 0;
}

/* Promotion pages */

.promotion-page {
    gap: 26px;
}

.promotion-hero,
.promotion-hero-overview {
    border-color: var(--theme-card-border);
    background:
        radial-gradient(circle at top center, rgba(255, 240, 199, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(20, 29, 22, 0.82), rgba(14, 20, 16, 0.72));
}

.promotion-hero-overview {
    padding: 34px;
}

.promotion-hero .hero-copy,
.promotion-hero-main {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.promotion-hero .hero-copy h1,
.promotion-hero-main h1 {
    max-width: 18ch;
}

.promotion-page .hero-stat-grid {
    align-content: stretch;
}

.promotion-page .stat-card {
    display: grid;
    justify-items: center;
    text-align: center;
    min-height: 112px;
    background: var(--theme-card-bg);
    border-color: var(--theme-card-border);
}

.promotion-page .stat-card span {
    color: var(--theme-copy-accent);
}

.promotion-page .stat-card strong {
    color: var(--theme-copy-strong);
}

.promotion-section .section-heading {
    justify-content: center;
    text-align: center;
}

.promotion-section,
.promotion-disclosure {
    border-color: var(--theme-card-border);
    background:
        radial-gradient(circle at top center, rgba(255, 240, 199, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(20, 29, 22, 0.82), rgba(14, 20, 16, 0.72));
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.promotion-section .section-heading > div {
    max-width: 720px;
    margin: 0 auto;
}

.promotion-disclosure {
    display: grid;
    gap: 0;
}

.promotion-disclosure-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
}

.promotion-disclosure-summary::-webkit-details-marker {
    display: none;
}

.promotion-disclosure-copy {
    display: grid;
    gap: 10px;
    flex: 1 1 auto;
    text-align: center;
}

.promotion-disclosure-title {
    color: var(--theme-copy-strong);
    font: 700 clamp(1.95rem, 3.4vw, 2.5rem)/1.04 Bahnschrift, "Arial Narrow", sans-serif;
    letter-spacing: -0.04em;
}

.promotion-disclosure-arrow {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    margin-top: 4px;
    border-right: 2px solid rgba(255, 222, 145, 0.9);
    border-bottom: 2px solid rgba(255, 222, 145, 0.9);
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.promotion-disclosure[open] .promotion-disclosure-arrow {
    transform: rotate(-135deg);
}

.promotion-disclosure-content {
    padding-top: 22px;
}

.promotion-section .card-actions,
.promotion-empty-state .card-actions,
.promotion-ready-card .landing-ready-actions,
.promotion-summary-strip .card-actions {
    justify-content: center;
}

.promotion-tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promotion-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promotion-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-path-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
    gap: 12px;
    margin: 0 auto;
}

.promotion-path-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-top: 28px;
}

.promotion-path-card .promotion-path-summary {
    max-width: 34ch;
    margin: 0;
}

.promotion-path-list {
    max-width: 420px;
}

.promotion-path-card ul {
    width: 100%;
    display: grid;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
}

.promotion-path-card ul li {
    display: block;
    padding: 0;
    text-align: center;
    color: var(--theme-copy-muted-strong);
}

.promotion-path-card ul li::before {
    content: none !important;
    display: none !important;
}

.promotion-path-list {
    width: 100%;
    display: grid;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
}

.promotion-path-list li {
    display: block;
    padding: 0;
    text-align: left;
    color: var(--theme-copy-muted-strong);
}

.promotion-path-list li::before {
    content: none !important;
    display: none !important;
}

.promotion-path-action {
    align-self: center;
    width: auto;
    min-width: 260px;
    margin-top: auto;
    border-color: var(--theme-card-border);
    background:
        radial-gradient(circle at top center, rgba(255, 240, 199, 0.05), transparent 36%),
        linear-gradient(180deg, rgba(28, 37, 29, 0.72), rgba(20, 29, 22, 0.58));
    color: var(--theme-copy-accent-soft);
    box-shadow: none;
}

.promotion-path-card:hover .promotion-path-action,
.promotion-path-card:focus-within .promotion-path-action {
    color: var(--text);
    transform: translateY(0);
}

.promotion-path-card:hover .promotion-path-action.primary-button,
.promotion-path-card:focus-within .promotion-path-action.primary-button {
    color: #0f1112;
    border-color: rgba(255, 222, 119, 0.52);
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    box-shadow: var(--theme-action-shadow-hover);
}

.promotion-path-card:hover .promotion-path-action.ghost-button,
.promotion-path-card:focus-within .promotion-path-action.ghost-button {
    border-color: rgba(101, 215, 208, 0.38);
    background: linear-gradient(180deg, rgba(25, 42, 47, 0.98), rgba(11, 20, 24, 0.98));
    color: var(--text);
    box-shadow: var(--theme-action-shadow-hover);
}

.promotion-card-icon {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    line-height: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(0, 0, 0, 0.22);
}

.promotion-card-icon svg {
    display: block;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promotion-card-icon.is-protect,
.promotion-card-icon.is-step {
    color: var(--accent-teal-strong);
    background: var(--theme-teal-bg);
    border: 1px solid var(--theme-teal-border);
}

.promotion-card-icon.is-grow,
.promotion-card-icon.is-tier {
    color: #ffd88c;
    background: var(--theme-gold-bg);
    border: 1px solid var(--theme-gold-border);
}

.promotion-card-icon.is-faq {
    color: rgba(255, 247, 226, 0.96);
    background: linear-gradient(180deg, rgba(56, 63, 71, 0.42), rgba(31, 37, 42, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.promotion-timeline-card,
.promotion-tier-card,
.promotion-faq-card {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.promotion-timeline-card p,
.promotion-tier-card p,
.promotion-faq-card p {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
}

.promotion-kicker,
.promotion-booking-chip,
.promotion-price-tag,
.promotion-tier-label,
.promotion-choice-kicker,
.promotion-choice-badge {
    justify-content: center;
}

.promotion-kicker,
.promotion-price-tag,
.promotion-tier-label,
.promotion-choice-kicker {
    color: var(--theme-copy-accent-soft);
    background: rgba(214, 195, 143, 0.08);
    border-color: var(--theme-card-border);
}

.promotion-booking-chip,
.promotion-choice-badge {
    color: var(--theme-copy);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.promotion-step-shell {
    padding: 20px 24px;
}

.promotion-steps {
    justify-content: center;
}

.promotion-step {
    min-height: 40px;
    padding: 0 16px;
}

.promotion-choice-card {
    min-height: 100%;
    padding: 22px 20px;
    background:
        radial-gradient(circle at top center, rgba(255, 240, 199, 0.06), transparent 30%),
        var(--theme-card-bg);
}

.promotion-choice-input:checked + .promotion-choice-card {
    transform: translateY(-5px);
    border-color: var(--theme-card-hover-border);
    background: var(--theme-card-hover-bg);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.promotion-choice-input:focus-visible + .promotion-choice-card {
    outline: 2px solid rgba(101, 215, 208, 0.56);
    outline-offset: 4px;
}

.promotion-server-meta,
.promotion-inline-pills {
    justify-content: center;
}

.promotion-addon-card {
    grid-template-columns: auto minmax(0, 1fr);
    text-align: left;
    justify-items: stretch;
    background:
        radial-gradient(circle at top center, rgba(255, 240, 199, 0.06), transparent 30%),
        var(--theme-card-bg);
}

.promotion-addon-copy {
    text-align: left;
    color: var(--theme-copy-muted);
}

.promotion-summary-strip,
.promotion-inline-note {
    padding: 24px 26px;
}

.promotion-summary-strip {
    justify-content: center;
    text-align: center;
}

.promotion-summary-copy,
.promotion-inline-note p,
.promotion-empty-state p {
    text-align: center;
}

.promotion-summary-copy p {
    max-width: 56ch;
    margin: 0 auto;
}

.promotion-review-card .section-heading,
.promotion-review-card .promotion-review-notes {
    text-align: left;
}

/* Responsive theme overrides */

@media (max-width: 1180px) {
    .landing-feature-grid,
    .promotion-tier-grid,
    .promotion-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .landing-hero-shell,
    .promotion-hero-shell,
    .promotion-book-layout {
        grid-template-columns: 1fr;
    }

    .landing-hero-main {
        justify-items: center;
        text-align: center;
    }

    .landing-hero-main p {
        margin: 0 auto;
    }

    .hero-stats-bar-product {
        width: min(100%, 320px);
    }

    .landing-preview-panel,
    .promotion-hero-visual {
        width: min(100%, 520px);
    }

    .promotion-bottom-actions {
        flex-direction: column;
    }

    .promotion-bottom-actions > * {
        width: 100%;
    }

    .promotion-disclosure-summary {
        align-items: flex-start;
    }

    .promotion-disclosure-copy {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .landing-hero,
    .landing-section,
    .promotion-hero-overview,
    .promotion-step-shell,
    .promotion-summary-strip,
    .promotion-inline-note,
    .promotion-ready-card {
        padding: 22px 20px;
    }

    .landing-preview-grid,
    .landing-feature-grid,
    .landing-trust-stats,
    .landing-step-flow,
    .promotion-path-grid,
    .promotion-tier-grid,
    .promotion-timeline-grid,
    .promotion-faq-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-main h1,
    .promotion-hero .hero-copy h1,
    .promotion-hero-main h1 {
        max-width: 100%;
    }

    .landing-product-actions,
    .landing-download-actions,
    .landing-ready-actions,
    .landing-launcher-image-shell,
    .hero-stats-bar-product {
        width: 100%;
    }

    .landing-product-actions,
    .landing-download-actions,
    .landing-ready-actions {
        justify-content: center;
    }

    .landing-launcher-button,
    .landing-secondary-button,
    .landing-download-actions .ghost-button,
    .landing-ready-actions > * {
        min-width: 0;
        width: min(100%, 320px);
    }

    .landing-launcher-frame {
        padding: 3px;
    }

    .promotion-path-action {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .hero-stats-bar-product {
        gap: 10px;
    }

    .hero-stat-pill-product {
        padding: 18px 14px 16px;
        border-radius: 20px;
    }

    .hero-stat-pill-product strong {
        font-size: clamp(1.65rem, 7vw, 2.15rem);
    }

    .hero-stat-pill-product span {
        font-size: 0.7rem;
    }
}
