:root {
    --bg: #131a28;
    --bg-soft: #1b2436;
    --panel: rgba(255, 255, 255, .05);
    --panel-strong: rgba(255, 255, 255, .1);
    --text: #fff;
    --muted: rgba(255, 255, 255, .76);
    --muted-strong: rgba(255, 255, 255, .9);
    --danger: #906328;
    --danger-2: #edd379;
    --success: #edd379;
    --line: rgba(237, 211, 121, .16);
    --accent-soft: rgba(237, 211, 121, .12);
    --accent-ink: #131a28;
    --shadow: 0 24px 60px rgba(0, 0, 0, .35);
    --shadow-strong: 0 38px 90px rgba(0, 0, 0, .48);
    --state-active: #91f0ba;
    --state-active-bg: rgba(91, 214, 137, .14);
    --state-pending: #ffe59b;
    --state-pending-bg: rgba(237, 211, 121, .14);
    --state-danger: #ffaaa0;
    --state-danger-bg: rgba(191, 74, 53, .16);
    --state-info: #b7d7ff;
    --state-info-bg: rgba(107, 152, 214, .14);
    --radius: 24px;
    --radius-sm: 16px;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.6rem
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, rgba(237, 211, 121, .2), transparent 32%), radial-gradient(circle at top right, rgba(144, 99, 40, .22), transparent 28%), linear-gradient(180deg, #131a28 0%, #182131 52%, #101722 100%);
    color: var(--text);
    line-height: 1.5
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 45;
    backdrop-filter: blur(14px);
    background: rgba(19, 26, 40, .9);
    border-bottom: 1px solid var(--line)
}

.nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    padding: .65rem 0 .85rem
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--muted-strong);
    font-size: .96rem;
    font-weight: 600;
    letter-spacing: .01em
}

.nav-menu-left {
    justify-content: flex-end;
    gap: .95rem;
    padding-right: 1rem
}

.nav-menu-right {
    justify-content: flex-start;
    gap: 1.65rem;
    padding-left: 1.3rem
}

.nav-menu a {
    position: relative;
    padding: .45rem 0;
    transition: color 180ms ease, text-shadow 180ms ease
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.08rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(144, 99, 40, .85), rgba(237, 211, 121, 1));
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
    color: var(--danger-2);
    text-shadow: 0 0 18px rgba(237, 211, 121, .18)
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
    opacity: 1;
    transform: scaleX(1)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -.55rem;
    right: -.55rem;
    top: 100%;
    height: .75rem
}

.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    padding: .45rem 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    transition: color 180ms ease, text-shadow 180ms ease
}

.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.08rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(144, 99, 40, .85), rgba(237, 211, 121, 1));
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease
}

.nav-dropdown-caret {
    width: .48rem;
    height: .48rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms ease
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--danger-2);
    text-shadow: 0 0 18px rgba(237, 211, 121, .18)
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
    opacity: 1;
    transform: scaleX(1)
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret,
.nav-dropdown.is-open .nav-dropdown-caret {
    transform: rotate(-135deg) translateY(-1px)
}

.nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 6px);
    min-width: 240px;
    display: grid;
    gap: .25rem;
    padding: .65rem;
    border-radius: 18px;
    border: 1px solid rgba(237, 211, 121, .24);
    background: rgba(15, 22, 34, .98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 60
}

.nav-dropdown-panel a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .62rem .72rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, .02);
    color: var(--muted-strong);
    font-weight: 700;
    line-height: 1.25
}

.nav-dropdown-panel a::after {
    display: none
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible,
.nav-dropdown-panel a.is-active {
    background: var(--accent-soft);
    border-color: rgba(237, 211, 121, .24);
    color: #fff5cf;
    text-shadow: none
}

.nav-dropdown-all {
    margin-top: .3rem;
    padding-top: .72rem !important;
    border-top: 1px solid rgba(237, 211, 121, .18);
    color: var(--danger-2) !important
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0)
}

.customer-account-menu {
    margin-left: .1rem
}

.customer-account-toggle {
    gap: .5rem;
    padding: .22rem .38rem .22rem .22rem;
    border: 1px solid rgba(237, 211, 121, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08)
}

.customer-account-toggle::after {
    display: none
}

.customer-account-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(237, 211, 121, .28);
    background: rgba(255, 255, 255, .08);
    object-fit: cover
}

.customer-account-avatar-large {
    width: 42px;
    height: 42px;
    flex: 0 0 auto
}

.customer-account-label {
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.customer-account-panel {
    left: auto;
    right: 0;
    min-width: 318px;
    transform: translateY(8px);
    padding: .75rem
}

.customer-account-menu:hover .customer-account-panel,
.customer-account-menu:focus-within .customer-account-panel,
.customer-account-menu.is-open .customer-account-panel {
    transform: translateY(0)
}

.customer-account-card {
    display: flex;
    align-items: center;
    gap: .72rem;
    padding: .72rem;
    margin-bottom: .35rem;
    border-radius: 16px;
    border: 1px solid rgba(237, 211, 121, .18);
    background: linear-gradient(135deg, rgba(237, 211, 121, .1), rgba(255, 255, 255, .035))
}

.customer-account-meta {
    display: grid;
    min-width: 0
}

.customer-account-name,
.customer-account-status {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.customer-account-name {
    color: #fff;
    font-weight: 800;
    line-height: 1.15
}

.customer-account-status {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 650
}

.customer-account-logout {
    margin-top: .35rem;
    padding-top: .55rem;
    border-top: 1px solid rgba(237, 211, 121, .16)
}

.customer-account-logout button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: .68rem .72rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
    color: var(--muted-strong);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: 180ms ease
}

.customer-account-logout button:hover,
.customer-account-logout button:focus-visible {
    background: var(--accent-soft);
    border-color: rgba(237, 211, 121, .24);
    color: #fff5cf
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    width: 132px
}

.nav-logo img {
    display: block;
    width: 112px;
    height: auto;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .32))
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .95rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 180ms ease;
    cursor: pointer;
    white-space: nowrap
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.mobile-menu-link:focus-visible,
.customer-account-toggle:focus-visible,
.customer-account-logout button:focus-visible {
    outline: 2px solid rgba(237, 211, 121, .82);
    outline-offset: 3px
}

.btn-primary {
    background: linear-gradient(135deg, var(--danger), var(--danger-2));
    color: var(--accent-ink);
    box-shadow: 0 16px 30px rgba(144, 99, 40, .3)
}

.btn-primary:hover:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(144, 99, 40, .38)
}

.btn-secondary {
    background: rgba(255, 255, 255, .03);
    border-color: var(--line);
    color: var(--text)
}

.btn-secondary:hover:not(:disabled):not([aria-disabled="true"]) {
    background: var(--accent-soft);
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .1);
    color: var(--muted-strong)
}

.btn-danger {
    background: rgba(191, 74, 53, .16);
    border-color: rgba(255, 170, 160, .32);
    color: #ffe2dc
}

.btn:disabled,
.btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: .52;
    filter: grayscale(.25);
    transform: none !important;
    box-shadow: none !important
}

.btn.is-loading {
    position: relative;
    cursor: wait
}

.btn.is-loading::after {
    content: "";
    width: .85rem;
    height: .85rem;
    border-radius: 50%;
    border: 2px solid currentColor;
    border-right-color: transparent;
    animation: fixstable-spin .75s linear infinite
}

@keyframes fixstable-spin {
    to {
        transform: rotate(360deg)
    }
}

.hero {
    padding: 5.5rem 0 3rem
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: start
}

.hero-copy {
    position: relative;
    isolation: isolate
}

.hero-copy::before {
    content: "";
    position: absolute;
    left: -5rem;
    top: -3.6rem;
    width: min(40rem, 86vw);
    height: 21rem;
    background: radial-gradient(circle at 35% 40%, rgba(237, 211, 121, .2), rgba(144, 99, 40, .16) 30%, transparent 68%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .52rem .95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(18, 25, 38, .92), rgba(144, 99, 40, .34));
    border: 1px solid rgba(237, 211, 121, .42);
    color: #fff3c9;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 1px rgba(237, 211, 121, .08), inset 0 1px 0 rgba(255, 255, 255, .04), 0 12px 28px rgba(0, 0, 0, .2)
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .9rem;
    padding: .72rem .95rem;
    margin-bottom: 1rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 25, 38, .94), rgba(144, 99, 40, .22));
    border: 1px solid rgba(237, 211, 121, .28);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .24)
}

.platform-badge-logo {
    display: block;
    width: 136px;
    max-width: min(38vw, 136px);
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .22))
}

.platform-badge-logo[src*="/LearnDash/"],
.platform-badge-logo[src*="/Mailchimp/"],
.platform-badge-logo[src*="/Squarespace/"],
.platform-badge-logo[src*="/Typeform/"],
.platform-badge-logo[src*="/Zapier/"] {
    filter: brightness(1.22) contrast(1.08) saturate(1.05) drop-shadow(0 12px 20px rgba(0, 0, 0, .22));
}

.platform-badge-logo[src*="/WPML/"] {
    background: rgba(255, 255, 255, .92);
    padding: .24rem .38rem;
    border-radius: 10px;
    border: 1px solid rgba(19, 26, 40, .08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .16);
}

.platform-badge-copy {
    display: grid;
    gap: .12rem
}

.platform-badge-copy strong {
    font-size: 1rem;
    line-height: 1.1
}

.platform-badge-copy small {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.25
}

h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: .89;
    letter-spacing: -.05em;
    max-width: 10ch
}

.hero-copy p {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 58ch;
    margin: 1.2rem 0 1.8rem
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.5rem
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, .84);
    font-size: .98rem
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: .45rem
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(237, 211, 121, .12)
}

.hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(237, 211, 121, .06));
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, .04);
    padding: 1.4rem;
    overflow: hidden
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(237, 211, 121, .14), transparent 42%);
    pointer-events: none
}

.status-shell {
    border-radius: 22px;
    background: #0f1622;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}

.status-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(237, 211, 121, .05)
}

.status-top i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block
}

.status-top i:nth-child(1) {
    background: var(--danger)
}

.status-top i:nth-child(2) {
    background: var(--danger-2)
}

.status-top i:nth-child(3) {
    background: #fff
}

.status-content {
    padding: 1.2rem;
    display: grid;
    gap: 1rem
}

.alert {
    background: linear-gradient(135deg, rgba(144, 99, 40, .24), rgba(237, 211, 121, .14));
    border: 1px solid rgba(237, 211, 121, .28);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}

.alert strong {
    display: block;
    font-size: 1rem;
    margin-bottom: .35rem
}

.issue-list {
    display: grid;
    gap: .85rem
}

.issue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(237, 211, 121, .04));
    border: 1px solid rgba(237, 211, 121, .16)
}

.issue-item .label {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-weight: 700
}

.issue-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(144, 99, 40, .2), rgba(237, 211, 121, .16));
    border: 1px solid rgba(237, 211, 121, .2);
    color: var(--danger-2);
    font-size: 1.1rem
}

.tag {
    padding: .35rem .65rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    color: #fff4ca;
    background: linear-gradient(135deg, rgba(144, 99, 40, .26), rgba(237, 211, 121, .22));
    border: 1px solid rgba(237, 211, 121, .34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05)
}

section {
    padding: 2rem 0
}

.section-title {
    margin-bottom: 1.25rem
}

.section-title h2 {
    margin: 0 0 .45rem;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.04em
}

.section-title p {
    margin: 0;
    color: var(--muted);
    max-width: 60ch
}

.problem-grid,
.reasons-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow)
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(144, 99, 40, .22), rgba(237, 211, 121, .16));
    border: 1px solid rgba(237, 211, 121, .2);
    font-size: 1.35rem;
    margin-bottom: 1rem
}

.card h3 {
    margin: 0 0 .55rem;
    font-size: 1.25rem
}

.card p {
    margin: 0;
    color: var(--muted)
}

.highlight {
    background: linear-gradient(180deg, rgba(237, 211, 121, .08), rgba(144, 99, 40, .08));
    border: 1px solid rgba(237, 211, 121, .18)
}

.reason-number {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--danger-2);
    margin-bottom: .85rem
}

.process {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 1.4rem;
    align-items: stretch
}

.process-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(237, 211, 121, .04));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: var(--shadow)
}

.price-box {
    background: linear-gradient(135deg, rgba(144, 99, 40, .2), rgba(237, 211, 121, .12));
    border: 1px solid rgba(237, 211, 121, .24);
    border-radius: 22px;
    padding: 1.2rem;
    margin: 1rem 0 1.25rem
}

.price-label {
    color: var(--danger-2);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem
}

.price {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.05em
}

.mini-note {
    margin-top: .45rem;
    color: var(--muted);
    font-size: .95rem
}

.step {
    display: flex;
    gap: .9rem;
    align-items: flex-start
}

.step-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--accent-ink);
    background: linear-gradient(135deg, var(--danger), var(--danger-2))
}

.step h4 {
    margin: 0 0 .25rem;
    font-size: 1.03rem
}

.step p {
    margin: 0;
    color: var(--muted)
}

.faq {
    display: grid;
    gap: .9rem
}

details {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem
}

summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none
}

summary::-webkit-details-marker {
    display: none
}

details p {
    margin: .8rem 0 0;
    color: var(--muted)
}

.cta {
    padding: 2rem 0 4.5rem
}

.cta-panel {
    text-align: center;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(144, 99, 40, .2), rgba(237, 211, 121, .1));
    border: 1px solid rgba(237, 211, 121, .2);
    box-shadow: var(--shadow)
}

.cta-panel h2 {
    margin: 0 0 .7rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -.04em
}

.cta-panel p {
    margin: 0 auto 1.2rem;
    color: var(--muted);
    max-width: 54ch
}

footer {
    padding: 0 0 2.2rem;
    color: var(--muted);
    font-size: .94rem
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem
}

.quick-start-form {
    display: grid;
    gap: 1rem;
    margin: 1.35rem 0 1rem
}

.quick-start-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: .85rem
}

.quick-start-form label {
    display: grid;
    gap: .42rem;
    color: var(--muted-strong);
    font-size: .95rem;
    font-weight: 700
}

.quick-start-form input,
.quick-start-form select,
.quick-start-form textarea {
    width: 100%;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(15, 22, 34, .92);
    color: var(--text);
    font: inherit
}

.quick-start-form textarea {
    min-height: 110px;
    resize: vertical
}

.quick-start-form input::placeholder,
.quick-start-form textarea::placeholder {
    color: rgba(255, 255, 255, .42)
}

.quick-start-note {
    margin: 0;
    color: var(--muted);
    font-size: .95rem
}

.quick-start-hint {
    margin: .95rem 0 0;
    color: var(--muted);
    font-size: .93rem
}

.quick-pick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1rem
}

.quick-pick {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: .95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    color: var(--muted-strong);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 180ms ease
}

.quick-pick:hover,
.quick-pick:focus-visible {
    background: var(--accent-soft);
    border-color: rgba(237, 211, 121, .28);
    transform: translateY(-1px)
}

.quick-pick.is-active {
    background: linear-gradient(135deg, rgba(144, 99, 40, .26), rgba(237, 211, 121, .2));
    border-color: rgba(237, 211, 121, .34);
    color: #fff5cf
}

.urgency-band {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(237, 211, 121, .24);
    background: linear-gradient(135deg, rgba(144, 99, 40, .18), rgba(237, 211, 121, .08));
    box-shadow: var(--shadow)
}

.urgency-band strong {
    display: block;
    margin-bottom: .35rem;
    font-size: 1rem
}

.consequence-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.2rem
}

.consequence-list {
    display: grid;
    gap: .75rem;
    margin-top: 1rem
}

.consequence-row {
    padding: .95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03)
}

.consequence-row strong {
    display: block;
    margin-bottom: .2rem
}

.recognition-points {
    display: grid;
    gap: .85rem;
    margin-top: 1rem
}

.recognition-points div {
    padding: .95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    color: var(--muted)
}

.recognition-points strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--text)
}

.quick-start-lead {
    margin: 0 0 .15rem;
    color: #fff2c1;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .01em
}

.transition-block {
    display: grid;
    gap: .35rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--shadow);
    transition: 180ms ease
}

.transition-block strong {
    display: block;
    color: var(--text)
}

.transition-block p {
    margin: 0;
    color: var(--muted)
}

.transition-block.is-ready {
    background: linear-gradient(135deg, rgba(144, 99, 40, .28), rgba(237, 211, 121, .16));
    border-color: rgba(237, 211, 121, .34)
}

.common-paths-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem
}

.sticky-recovery-bar {
    display: none
}

.sticky-recovery-inner {
    display: flex;
    align-items: center;
    gap: .85rem
}

.sticky-recovery-copy {
    flex: 1;
    color: var(--muted);
    font-size: .9rem
}

.simple-header .nav {
    grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
    gap: 1rem;
    padding: .38rem 0 .48rem
}

.simple-header .nav-menu {
    font-size: .9rem;
    gap: .85rem
}

.simple-header .nav-menu a {
    padding: .25rem 0
}

.simple-header .nav-logo {
    width: 108px
}

.simple-header .nav-logo img {
    width: 86px
}

.simple-header .nav-menu-left,
.simple-header .nav-menu-right {
    gap: .85rem
}

@media (max-width:980px) {

    .hero-grid,
    .process,
    .consequence-grid {
        grid-template-columns: 1fr
    }

    .problem-grid,
    .reasons-grid,
    .steps-grid,
    .quick-pick-grid,
    .common-paths-grid {
        grid-template-columns: 1fr
    }

    h1 {
        max-width: 12ch
    }
}

@media (max-width:720px) {
    .nav {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: .95rem 0 1.2rem
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.1rem;
        padding: 0
    }

    .nav-menu-left {
        order: 2
    }

    .nav-logo {
        order: 1;
        width: 118px
    }

    .nav-menu-right {
        order: 3
    }

    .nav-logo img {
        width: 96px
    }

    .hero {
        padding-top: 3.45rem
    }

    .hero-copy::before {
        left: -2.5rem;
        top: -2.2rem;
        width: calc(100% + 5rem);
        height: 15rem
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .quick-start-grid {
        grid-template-columns: 1fr
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start
    }

    .simple-header .nav {
        grid-template-columns: 1fr;
        justify-items: flex-start;
        padding: .28rem 0 .42rem
    }

    .simple-header .nav-menu {
        display: none
    }

    .simple-header .nav-logo {
        order: 1;
        width: 92px;
        justify-self: flex-start
    }

    .simple-header .nav-logo img {
        width: 74px
    }

    .has-sticky-recovery {
        padding-bottom: 5.9rem
    }

    .sticky-recovery-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 35;
        padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom, 0));
        border-top: 1px solid rgba(237, 211, 121, .24);
        background: rgba(15, 22, 34, .96);
        backdrop-filter: blur(16px);
        box-shadow: 0 -20px 40px rgba(0, 0, 0, .28)
    }

    .sticky-recovery-inner {
        width: min(calc(100% - 2rem), var(--max));
        margin: 0 auto
    }

    .sticky-recovery-inner .btn {
        width: auto;
        flex: 0 0 auto;
        padding: .85rem 1.1rem
    }
}

html,
body {
    overflow-x: hidden
}

body.mobile-nav-open,
html.mobile-nav-open {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    overscroll-behavior: none;
    touch-action: none
}

.topbar {
    overflow-x: clip
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(237, 211, 121, .22);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18)
}

.nav-toggle svg {
    display: block;
    width: 20px;
    height: 20px;
    overflow: visible
}

.nav-toggle rect {
    fill: currentColor;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease
}

.topbar.is-menu-open .nav-toggle rect:nth-child(1) {
    transform: translateY(5px) rotate(45deg)
}

.topbar.is-menu-open .nav-toggle rect:nth-child(2) {
    opacity: 0
}

.topbar.is-menu-open .nav-toggle rect:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg)
}

.mobile-nav-overlay {
    display: none;
    visibility: hidden;
    pointer-events: none
}

.mobile-menu-link {
    display: block;
    padding: .92rem 1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, .03);
    color: var(--muted-strong);
    font-weight: 700;
    transition: 180ms ease
}

.mobile-menu-link.is-active {
    background: var(--accent-soft);
    border-color: rgba(237, 211, 121, .24);
    color: #fff5cf
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
    background: var(--accent-soft);
    border-color: rgba(237, 211, 121, .24);
    color: #fff5cf
}

.mobile-menu-link-compact {
    padding: .72rem .85rem;
    font-size: .92rem;
    font-weight: 600
}

.mobile-menu-link-quiet {
    margin-top: .35rem;
    background: transparent;
    border-color: rgba(237, 211, 121, .16);
    color: #fff0c4
}

.mobile-menu-link-logout {
    width: 100%;
    margin: 0;
    cursor: pointer;
    text-align: left;
    font: inherit
}

@media (min-width:901px) {
    .mobile-nav-overlay,
    .nav-toggle {
        display: none !important
    }
}

@media (max-width:900px) {
    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 45;
        overflow: visible
    }

    .topbar ~ main {
        padding-top: 4.55rem
    }

    .topbar ~ main .hero {
        padding-top: 3.35rem
    }

    html {
        scroll-padding-top: 4.85rem
    }

    .topbar .nav {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: .7rem;
        padding: .34rem 0 .42rem
    }

    .topbar .nav-menu {
        display: none !important
    }

    .topbar .nav-logo,
    .simple-header .nav-logo,
    .mobile-nav-overlay .mobile-nav-logo {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 auto;
        flex-shrink: 0;
        order: 0;
        justify-self: flex-start;
        align-self: center;
        width: auto;
        max-width: 132px;
        min-width: 0;
        min-height: 0;
        padding: 0;
        margin: 0;
        text-decoration: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        transform: none;
        filter: none;
        color: inherit;
        line-height: 0
    }

    .topbar .nav-logo img,
    .simple-header .nav-logo img,
    .mobile-nav-overlay .mobile-nav-logo img {
        display: block;
        width: auto;
        max-width: 62px;
        height: auto;
        max-height: none;
        object-fit: contain;
        transform: none;
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .26))
    }

    .topbar .nav-logo:hover,
    .topbar .nav-logo:focus,
    .topbar .nav-logo:focus-visible,
    .topbar .nav-logo:active,
    .topbar .nav-logo:visited,
    .simple-header .nav-logo:hover,
    .simple-header .nav-logo:focus,
    .simple-header .nav-logo:focus-visible,
    .simple-header .nav-logo:active,
    .simple-header .nav-logo:visited,
    .mobile-nav-overlay .mobile-nav-logo:hover,
    .mobile-nav-overlay .mobile-nav-logo:focus,
    .mobile-nav-overlay .mobile-nav-logo:focus-visible,
    .mobile-nav-overlay .mobile-nav-logo:active,
    .mobile-nav-overlay .mobile-nav-logo:visited {
        text-decoration: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        transform: none;
        filter: none;
        opacity: 1;
        color: inherit
    }

    .topbar .nav-logo:hover img,
    .topbar .nav-logo:focus img,
    .topbar .nav-logo:focus-visible img,
    .topbar .nav-logo:active img,
    .topbar .nav-logo:visited img,
    .simple-header .nav-logo:hover img,
    .simple-header .nav-logo:focus img,
    .simple-header .nav-logo:focus-visible img,
    .simple-header .nav-logo:active img,
    .simple-header .nav-logo:visited img,
    .mobile-nav-overlay .mobile-nav-logo:hover img,
    .mobile-nav-overlay .mobile-nav-logo:focus img,
    .mobile-nav-overlay .mobile-nav-logo:focus-visible img,
    .mobile-nav-overlay .mobile-nav-logo:active img,
    .mobile-nav-overlay .mobile-nav-logo:visited img {
        width: auto;
        max-width: 62px;
        height: auto;
        max-height: none;
        transform: none;
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .26));
        opacity: 1
    }

    .topbar .nav-logo:focus-visible,
    .simple-header .nav-logo:focus-visible,
    .mobile-nav-overlay .mobile-nav-logo:focus-visible {
        outline: 2px solid rgba(237, 211, 121, .82);
        outline-offset: 4px
    }

    .nav-toggle {
        display: inline-flex;
        order: 1;
        flex: 0 0 auto;
        margin-left: auto
    }

    .topbar.is-menu-open {
        overflow: visible
    }

    .mobile-nav-overlay,
    #fixstable-mobile-nav.mobile-nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 200;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0;
        border: 0;
        background: #0b1019;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: hidden;
        isolation: isolate
    }

    .mobile-nav-overlay[hidden] {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important
    }

    body.mobile-nav-open .mobile-nav-overlay:not([hidden]),
    body.mobile-nav-open #fixstable-mobile-nav.mobile-nav-overlay:not([hidden]),
    .mobile-nav-overlay.is-open:not([hidden]) {
        display: flex !important;
        visibility: visible !important;
        pointer-events: auto !important;
        opacity: 1 !important
    }

    .mobile-nav-drawer {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 0;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: #0b1019;
        box-shadow: none;
        overflow: hidden
    }

    .mobile-nav-header {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
        min-height: 3.25rem;
        padding: .5rem .85rem;
        border-bottom: 1px solid rgba(237, 211, 121, .14);
        background: #0f1622
    }

    .mobile-nav-close {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border: 1px solid rgba(237, 211, 121, .22);
        border-radius: 12px;
        background: rgba(255, 255, 255, .04);
        color: var(--text);
        font-size: 1.45rem;
        line-height: 1;
        cursor: pointer
    }

    .mobile-nav-body {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        gap: .85rem;
        min-height: 0;
        padding: .85rem .85rem 1.1rem;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch
    }

    .mobile-nav-overlay .nav-menu,
    .mobile-nav-overlay .nav-dropdown,
    .mobile-nav-overlay .nav-dropdown-panel,
    .mobile-nav-overlay .nav-dropdown-toggle,
    .mobile-nav-overlay .customer-account-menu {
        display: none !important
    }

    .mobile-nav-overlay .mobile-menu-link,
    .mobile-nav-overlay .mobile-nav-footer-link {
        position: static;
        text-shadow: none;
        letter-spacing: normal
    }

    .mobile-nav-overlay .mobile-menu-link::after,
    .mobile-nav-overlay .mobile-nav-footer-link::after {
        content: none !important;
        display: none !important
    }

    .mobile-nav-overlay .mobile-nav-details>summary {
        position: static;
        padding: .8rem .9rem;
        margin: 0;
        border: 0;
        background: transparent;
        color: var(--muted-strong);
        font-size: .96rem;
        font-weight: 700;
        letter-spacing: normal;
        text-shadow: none;
        cursor: pointer
    }

    .mobile-nav-overlay .mobile-nav-details>summary::after {
        content: "+" !important;
        display: block !important;
        float: right;
        color: #fff0c4;
        font-weight: 700
    }

    .mobile-nav-overlay .mobile-nav-details[open]>summary::after {
        content: "−" !important
    }

    .mobile-nav-overlay .mobile-nav-ctas .btn {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box
    }

    .mobile-nav-overlay .mobile-nav-details {
        border: 1px solid rgba(237, 211, 121, .16);
        border-radius: 18px;
        background: rgba(255, 255, 255, .02);
        overflow: hidden
    }

    .mobile-nav-ctas {
        display: grid;
        gap: .65rem
    }

    .mobile-nav-ctas .btn {
        width: 100%;
        justify-content: center;
        text-align: center
    }

    .mobile-nav-helper {
        margin: 0;
        color: var(--muted);
        font-size: .86rem;
        line-height: 1.45
    }

    .mobile-nav-user {
        display: flex;
        align-items: center;
        gap: .85rem;
        padding: .85rem 1rem;
        border-radius: 18px;
        border: 1px solid rgba(237, 211, 121, .18);
        background: rgba(255, 255, 255, .03)
    }

    .mobile-nav-user-avatar {
        border-radius: 999px
    }

    .mobile-nav-user-meta {
        display: grid;
        gap: .2rem
    }

    .mobile-nav-user-name {
        color: var(--text);
        font-size: 1rem
    }

    .mobile-nav-user-status {
        color: var(--muted);
        font-size: .86rem
    }

    .mobile-nav-links {
        display: grid;
        gap: .45rem
    }

    .mobile-nav-details {
        border: 1px solid rgba(237, 211, 121, .16);
        border-radius: 18px;
        background: rgba(255, 255, 255, .02);
        overflow: hidden
    }

    .mobile-nav-details-secondary {
        margin-top: auto
    }

    .mobile-nav-details>summary {
        list-style: none;
        cursor: pointer;
        padding: .95rem 1rem;
        color: var(--muted-strong);
        font-weight: 700
    }

    .mobile-nav-details>summary::-webkit-details-marker {
        display: none
    }

    .mobile-nav-details>summary::after {
        content: "+";
        float: right;
        color: #fff0c4;
        font-weight: 700
    }

    .mobile-nav-details[open]>summary::after {
        content: "−"
    }

    .mobile-nav-details-panel {
        display: grid;
        gap: .65rem;
        padding: 0 1rem 1rem;
        border-top: 1px solid rgba(237, 211, 121, .1)
    }

    .mobile-nav-stack-group-label {
        margin: .35rem 0 .25rem;
        color: var(--muted);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase
    }

    .mobile-nav-stack-group-links {
        display: grid;
        gap: .35rem
    }

    .mobile-nav-footer-help {
        display: grid;
        gap: .55rem;
        padding-top: .35rem;
        border-top: 1px solid rgba(237, 211, 121, .12)
    }

    .mobile-nav-footer-link {
        display: block;
        padding: .8rem .95rem;
        border-radius: 14px;
        border: 1px solid rgba(237, 211, 121, .12);
        background: rgba(255, 255, 255, .02);
        color: var(--muted);
        font-size: .9rem;
        line-height: 1.4
    }

    .mobile-nav-footer-link span {
        display: block;
        margin-top: .15rem;
        color: #fff0c4;
        font-weight: 700
    }

    .mobile-nav-logout {
        margin: 0
    }

    .hero-copy::before {
        left: -1.75rem;
        top: -1.8rem;
        width: calc(100% + 3.5rem);
        height: 15rem
    }

    .platform-badge {
        width: 100%;
        gap: .75rem;
        padding: .68rem .8rem
    }

    .platform-badge-logo {
        width: 122px;
        max-width: min(42vw, 122px)
    }

    .platform-badge-copy strong {
        font-size: .96rem
    }

    .platform-badge-copy small {
        font-size: .82rem
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--max))
    }
}

@media (max-width:900px) and (orientation:landscape) {
    section {
        padding: 1.45rem 0
    }

    .topbar ~ main {
        padding-top: 4.15rem
    }

    .topbar ~ main .hero {
        padding: 1rem 0 1.4rem
    }

    .hero-grid,
    .process,
    .consequence-grid {
        gap: 1rem
    }

    .hero-card,
    .process-panel,
    .cta-panel {
        padding: 1.1rem
    }

    .sticky-recovery-inner {
        width: min(calc(100% - 1.25rem), var(--max))
    }
}

@media (min-width:901px) {
    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%
    }

    .topbar .nav {
        grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
        gap: 1rem;
        padding: .38rem 0 .48rem
    }

    .topbar .nav-menu {
        font-size: .9rem;
        gap: .85rem
    }

    .topbar .nav-menu a {
        padding: .25rem 0
    }

    .topbar .nav-menu-left {
        gap: .85rem;
        padding-right: .85rem
    }

    .topbar .nav-menu-right {
        gap: .85rem;
        padding-left: .85rem
    }

    .topbar .nav-logo {
        width: 108px
    }

    .topbar .nav-logo img {
        width: 86px
    }

    .topbar ~ main {
        padding-top: 8.35rem
    }

    .topbar ~ main .hero {
        padding-top: 2rem
    }

    html {
        scroll-padding-top: 8.6rem
    }
}

.woocommerce-info {
    margin-top: 30px;
}

.hero-grid form {
    margin-top: 14px;
}