/* [c1] */

@font-face {
    font-family: "FX Manrope";
    src: url("../themes/_fonts/manrope.woff2") format("woff2");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --fx-bg:        #f5f3ef;
    --fx-bg-2:      #ece8e1;
    --fx-surface:   #ffffff;
    --fx-ink:       #15130f;
    --fx-ink-2:     #3b3731;
    --fx-muted:     #6f6a62;
    --fx-faint:     #a39d93;
    --fx-line:      #e6e1d9;
    --fx-line-2:    #d7d0c5;
    --fx-accent:    #e8641a;
    --fx-accent-2:  #cf5510;
    --fx-accent-soft: #fcebdd;
    --fx-accent-ring: rgba(232, 100, 26, 0.22);
    --fx-ok:        #178a55;
    --fx-ok-soft:   #e3f3ea;
    --fx-err:       #c53a2d;
    --fx-err-soft:  #fbe9e7;

    --fx-font: "FX Manrope", "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --fx-r-xs: 8px;
    --fx-r-sm: 12px;
    --fx-r:    16px;
    --fx-r-lg: 22px;
    --fx-r-xl: 28px;

    --fx-shadow-1: 0 1px 2px rgba(21, 19, 15, 0.05), 0 1px 1px rgba(21, 19, 15, 0.03);
    --fx-shadow-2: 0 10px 30px -12px rgba(21, 19, 15, 0.20), 0 2px 6px rgba(21, 19, 15, 0.05);
    --fx-shadow-3: 0 40px 80px -30px rgba(21, 19, 15, 0.35), 0 12px 30px -12px rgba(21, 19, 15, 0.18);

    --fx-ease:     cubic-bezier(0.16, 1, 0.3, 1);
    --fx-ease-in:  cubic-bezier(0.4, 0, 1, 1);
    --fx-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --fx-dur:      380ms;

    --fx-top-h:    64px;
}
@media (max-width: 1023px) {
    :root { --fx-top-h: 56px; }
}

/* [c2] */

html, body {
    background: var(--fx-bg);
}
body {
    margin: 0;
    font-family: var(--fx-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--fx-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv01";
}
body.fx-lock { overflow: hidden; }
.fx-app button, .fx-app input, .fx-app select, .fx-app textarea { font-family: inherit; }
.fx-app a { color: inherit; }
.fx-app [hidden] { display: none !important; }
.fx-app :focus { outline: none; }
.fx-app :focus-visible, .fx-sheet :focus-visible { outline: 2px solid var(--fx-accent); outline-offset: 3px; }
/* [c3] */
.fx-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* [c4] */

/* [c33] */
body { min-height: 0; }
.fx-app {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.fx-top {
    position: sticky;
    top: 0;
    z-index: 30;
    height: var(--fx-top-h);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 clamp(16px, 3vw, 32px);
    background: rgba(245, 243, 239, 0.86);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    backdrop-filter: saturate(1.4) blur(14px);
}
.fx-logo { display: inline-flex; align-items: center; height: 40px; flex: 0 0 auto; }
.fx-logo img { height: 26px; width: auto; display: block; }
.fx-top-mid {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fx-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fx-top-right { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.fx-iconbtn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--fx-ink-2);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: background 200ms var(--fx-ease), transform 200ms var(--fx-ease), color 200ms;
}
.fx-iconbtn:hover { background: rgba(21, 19, 15, 0.06); }
.fx-iconbtn:active { transform: scale(0.94); }
.fx-iconbtn svg { width: 20px; height: 20px; }
.fx-sound .fx-sound-off { display: none; }
.fx-sound[aria-pressed="false"] .fx-sound-on { display: none; }
.fx-sound[aria-pressed="false"] .fx-sound-off { display: block; }
.fx-sound[aria-pressed="false"] { color: var(--fx-faint); }

.fx-progress {
    position: sticky;
    top: var(--fx-top-h);
    z-index: 29;
    height: 3px;
    background: var(--fx-line);
}
.fx-progress > i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--fx-accent);
    border-radius: 0 3px 3px 0;
    transition: width 600ms var(--fx-ease);
}

.fx-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.fx-panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 40px) 40px;
    min-width: 0;
}
.fx-panel-inner {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.fx-stage { display: none; }

@media (min-width: 1024px) {
    .fx-main.fx-split {
        display: grid;
        grid-template-columns: minmax(440px, 46fr) 54fr;
        height: calc(100vh - var(--fx-top-h) - 3px);
        height: calc(100dvh - var(--fx-top-h) - 3px);
    }
    .fx-main.fx-split .fx-panel {
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 40px clamp(32px, 4vw, 64px);
        scrollbar-width: thin;
    }
    /* [c5] */
    .fx-main.fx-split .fx-panel-inner { justify-content: center; min-height: 100%; flex-shrink: 0; }
    .fx-main.fx-split .fx-stage {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 40px clamp(32px, 4vw, 72px);
        background:
            radial-gradient(120% 90% at 70% 10%, #ffffff 0%, rgba(255, 255, 255, 0) 55%),
            radial-gradient(90% 70% at 20% 100%, #e6dfd3 0%, rgba(230, 223, 211, 0) 60%),
            var(--fx-bg-2);
        border-left: 1px solid var(--fx-line);
    }
    .fx-stage::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(rgba(21, 19, 15, 0.06) 1px, transparent 1px);
        background-size: 22px 22px;
        -webkit-mask-image: radial-gradient(80% 70% at 50% 50%, #000 30%, transparent 80%);
        mask-image: radial-gradient(80% 70% at 50% 50%, #000 30%, transparent 80%);
    }
    .fx-stage > * { position: relative; z-index: 1; }
}

/* [c6] */

.fx-step { display: none; }
.fx-step.is-active { display: flex; flex-direction: column; animation: fx-step-in var(--fx-dur) var(--fx-ease) both; }
.fx-step.is-active.is-back { animation-name: fx-step-in-back; }
.fx-step.is-leaving { display: flex; flex-direction: column; animation: fx-step-out 160ms var(--fx-ease-in) both; pointer-events: none; }
/* [c7] */
.fx-step.is-leaving.is-back { animation-name: fx-step-out; }

@keyframes fx-step-in      { from { opacity: 0; transform: translate3d(0, 14px, 0); } to { opacity: 1; transform: none; } }
@keyframes fx-step-in-back { from { opacity: 0; transform: translate3d(0, -10px, 0); } to { opacity: 1; transform: none; } }
@keyframes fx-step-out     { from { opacity: 1; } to { opacity: 0; transform: translate3d(0, -6px, 0); } }
@keyframes fx-fade-in      { from { opacity: 0; } to { opacity: 1; } }
@keyframes fx-rise         { from { opacity: 0; transform: translate3d(0, 10px, 0); } to { opacity: 1; transform: none; } }
@keyframes fx-pop          { 0% { opacity: 0; transform: scale(0.6); } 60% { opacity: 1; transform: scale(1.06); } 100% { transform: scale(1); } }
@keyframes fx-spin         { to { transform: rotate(360deg); } }
@keyframes fx-shake        { 0%, 100% { transform: none; } 20% { transform: translateX(-6px); } 40% { transform: translateX(5px); } 60% { transform: translateX(-3px); } 80% { transform: translateX(2px); } }
@keyframes fx-pulse-ring   { 0% { box-shadow: 0 0 0 0 var(--fx-accent-ring); } 70% { box-shadow: 0 0 0 10px rgba(232, 100, 26, 0); } 100% { box-shadow: 0 0 0 0 rgba(232, 100, 26, 0); } }
@keyframes fx-draw         { to { stroke-dashoffset: 0; } }
@keyframes fx-float        { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -6px, 0); } }

/* [c8] */
.fx-step.is-active .fx-stagger > * { animation: fx-rise 520ms var(--fx-ease) both; }
.fx-step.is-active .fx-stagger > *:nth-child(2) { animation-delay: 40ms; }
.fx-step.is-active .fx-stagger > *:nth-child(3) { animation-delay: 80ms; }
.fx-step.is-active .fx-stagger > *:nth-child(4) { animation-delay: 120ms; }
.fx-step.is-active .fx-stagger > *:nth-child(5) { animation-delay: 160ms; }
.fx-step.is-active .fx-stagger > *:nth-child(6) { animation-delay: 200ms; }
.fx-step.is-active .fx-stagger > *:nth-child(n+7) { animation-delay: 240ms; }

.fx-shake { animation: fx-shake 380ms var(--fx-ease) both; }

/* [c9] */

.fx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fx-muted);
    margin: 0 0 12px;
}
.fx-h1 {
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 0 0 14px;
    text-wrap: balance;
}
.fx-h2 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    text-wrap: balance;
}
.fx-h3 { font-size: 17px; line-height: 1.3; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 10px; }
.fx-sub { font-size: 17px; line-height: 1.5; color: var(--fx-muted); margin: 0 0 24px; text-wrap: pretty; }
.fx-label { display: block; font-size: 14px; font-weight: 700; color: var(--fx-ink-2); margin: 0 0 10px; }
.fx-muted { color: var(--fx-muted); }
.fx-fine { font-size: 13px; line-height: 1.5; color: var(--fx-muted); }
.fx-accent-text { color: var(--fx-accent); }

/* [c10] */

.fx-btn {
    --fx-btn-h: 54px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: var(--fx-btn-h);
    padding: 0 24px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 750;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 160ms var(--fx-ease), background 200ms var(--fx-ease), box-shadow 200ms var(--fx-ease), color 200ms, border-color 200ms, opacity 200ms;
}
.fx-btn:active { transform: scale(0.98); }
.fx-btn[disabled], .fx-btn.is-disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.fx-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.fx-btn-primary {
    background: var(--fx-ink);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 8px 20px -10px rgba(21, 19, 15, 0.6);
}
.fx-btn-primary:hover:not([disabled]) { background: #000; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 12px 26px -10px rgba(21, 19, 15, 0.7); }
.fx-btn-accent { background: var(--fx-accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(232, 100, 26, 0.9); }
.fx-btn-accent:hover:not([disabled]) { background: var(--fx-accent-2); }
.fx-btn-ghost { background: var(--fx-surface); color: var(--fx-ink); border-color: var(--fx-line-2); box-shadow: var(--fx-shadow-1); }
.fx-btn-ghost:hover:not([disabled]) { border-color: var(--fx-ink-2); }
.fx-btn-text {
    min-height: 44px;
    padding: 0 12px;
    background: transparent;
    color: var(--fx-muted);
    font-weight: 700;
}
.fx-btn-text:hover:not([disabled]) { color: var(--fx-ink); }
.fx-btn-block { width: 100%; }
/* [c11] */
.fx-app a.fx-btn-primary, .fx-app a.fx-btn-accent { color: #fff; }
.fx-app a.fx-btn-ghost { color: var(--fx-ink); }
.fx-btn-sm { --fx-btn-h: 40px; padding: 0 16px; font-size: 14px; border-radius: 11px; }
.fx-btn .fx-arrow { transition: transform 200ms var(--fx-ease); }
.fx-btn:hover .fx-arrow { transform: translateX(3px); }
.fx-btn.is-busy { color: transparent !important; pointer-events: none; }
.fx-btn.is-busy::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: fx-spin 700ms linear infinite;
}
.fx-btn-ghost.is-busy::after, .fx-btn-text.is-busy::after { border-color: rgba(21, 19, 15, 0.18); border-top-color: var(--fx-ink); }

.fx-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.fx-actions-row { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.fx-actions-row .fx-btn-primary { flex: 1 1 auto; }

.fx-link {
    background: none;
    border: 0;
    padding: 0;
    color: var(--fx-ink);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--fx-line-2);
    text-underline-offset: 3px;
    cursor: pointer;
}
.fx-link:hover { text-decoration-color: var(--fx-ink); }

/* [c12] */

.fx-fields { display: grid; gap: 14px; }
.fx-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .fx-grid-2.fx-stack-sm { grid-template-columns: 1fr; } }
.fx-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.fx-field > span { font-size: 13px; font-weight: 700; color: var(--fx-ink-2); }
.fx-input, .fx-select {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-radius: 13px;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-surface);
    color: var(--fx-ink);
    font-size: 16px;
    font-weight: 600;
    transition: border-color 180ms var(--fx-ease), box-shadow 180ms var(--fx-ease), background 180ms;
    -webkit-appearance: none;
    appearance: none;
}
.fx-input::placeholder { color: var(--fx-faint); font-weight: 500; }
.fx-input:hover, .fx-select:hover { border-color: #c3bbae; }
.fx-input:focus, .fx-select:focus { border-color: var(--fx-ink); box-shadow: 0 0 0 4px rgba(21, 19, 15, 0.07); }
.fx-input.is-invalid, .fx-select.is-invalid { border-color: var(--fx-err); box-shadow: 0 0 0 4px var(--fx-err-soft); }
/* [c13] */
.fx-app .fx-input:focus-visible, .fx-app .fx-select:focus-visible { outline: none; }
.fx-input-lg { height: 62px; font-size: 19px; font-weight: 700; }
.fx-select {
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f6a62' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    cursor: pointer;
}
textarea.fx-input { height: auto; min-height: 96px; padding: 14px 16px; line-height: 1.5; resize: vertical; }

.fx-affix {
    display: flex;
    align-items: stretch;
    height: 62px;
    border-radius: 14px;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-surface);
    overflow: hidden;
    transition: border-color 180ms var(--fx-ease), box-shadow 180ms var(--fx-ease);
}
.fx-affix:focus-within { border-color: var(--fx-ink); box-shadow: 0 0 0 4px rgba(21, 19, 15, 0.07); }
.fx-affix.is-ok { border-color: var(--fx-ok); box-shadow: 0 0 0 4px var(--fx-ok-soft); }
.fx-affix.is-invalid { border-color: var(--fx-err); box-shadow: 0 0 0 4px var(--fx-err-soft); }
.fx-affix > span {
    display: flex;
    align-items: center;
    padding: 0 4px 0 16px;
    color: var(--fx-faint);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}
.fx-affix > span:last-child { padding: 0 16px 0 2px; color: var(--fx-ink); }
.fx-affix input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--fx-ink);
    padding: 0;
}
.fx-affix input:focus { outline: none; }

.fx-error {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--fx-err-soft);
    color: #8f2219;
    font-size: 14px;
    font-weight: 650;
    animation: fx-rise 260ms var(--fx-ease) both;
}

.fx-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--fx-ink-2);
    cursor: pointer;
}
.fx-check input {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin: 0;
    border-radius: 7px;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-surface);
    -webkit-appearance: none;
    appearance: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 160ms, border-color 160ms, transform 160ms var(--fx-spring);
}
.fx-check input::after {
    content: "";
    width: 11px;
    height: 6px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px) scale(0);
    transition: transform 200ms var(--fx-spring);
}
.fx-check input:checked { background: var(--fx-ink); border-color: var(--fx-ink); }
.fx-check input:checked::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.fx-check input:active { transform: scale(0.9); }
.fx-check a { font-weight: 700; }

/* [c14] */

.fx-choices { display: grid; gap: 10px; }
.fx-choice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 76px;
    padding: 14px 18px 14px 14px;
    border-radius: var(--fx-r);
    border: 1.5px solid var(--fx-line);
    background: var(--fx-surface);
    color: var(--fx-ink);
    text-align: left;
    cursor: pointer;
    box-shadow: var(--fx-shadow-1);
    -webkit-tap-highlight-color: transparent;
    transition: border-color 200ms var(--fx-ease), box-shadow 240ms var(--fx-ease), transform 200ms var(--fx-ease), background 200ms;
}
.fx-choice:hover { border-color: var(--fx-line-2); box-shadow: var(--fx-shadow-2); transform: translateY(-1px); }
.fx-choice:active { transform: scale(0.985); }
.fx-choice-ico {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--fx-bg);
    color: var(--fx-ink);
    transition: background 200ms, color 200ms;
}
.fx-choice-ico svg { width: 24px; height: 24px; }
.fx-choice-text { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fx-choice-text b { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; }
.fx-choice-text small { font-size: 14px; font-weight: 550; color: var(--fx-muted); }
.fx-choice-mark {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1.5px solid var(--fx-line-2);
    display: grid;
    place-items: center;
    transition: background 200ms, border-color 200ms;
}
.fx-choice-mark svg { width: 14px; height: 14px; color: #fff; opacity: 0; transform: scale(0.4); transition: opacity 180ms, transform 260ms var(--fx-spring); }
.fx-choice.is-selected { border-color: var(--fx-ink); box-shadow: 0 0 0 1px var(--fx-ink), var(--fx-shadow-2); }
.fx-choice.is-selected .fx-choice-ico { background: var(--fx-accent-soft); color: var(--fx-accent-2); }
.fx-choice.is-selected .fx-choice-mark { background: var(--fx-ink); border-color: var(--fx-ink); }
.fx-choice.is-selected .fx-choice-mark svg { opacity: 1; transform: scale(1); }
.fx-choice-sm { min-height: 60px; padding: 12px 16px; }

/* [c15] */

.fx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-surface);
    color: var(--fx-ink);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 180ms, background 180ms, color 180ms, transform 160ms var(--fx-ease);
}
.fx-chip:hover { border-color: var(--fx-ink-2); }
.fx-chip:active { transform: scale(0.96); }
.fx-chip.is-on { background: var(--fx-ink); border-color: var(--fx-ink); color: #fff; }
.fx-chip .fi { border-radius: 3px; }
.fx-chip-x { width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; margin-right: -6px; opacity: 0.6; }
.fx-chip-x:hover { opacity: 1; }
.fx-chip-x svg { width: 12px; height: 12px; }

.fx-seg {
    display: inline-flex;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
    background: var(--fx-bg-2);
    border: 1px solid var(--fx-line);
}
.fx-seg button {
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--fx-muted);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: background 200ms var(--fx-ease), color 200ms, box-shadow 200ms;
}
.fx-seg button.is-on { background: var(--fx-surface); color: var(--fx-ink); box-shadow: var(--fx-shadow-1); }

.fx-switch {
    position: relative;
    flex: 0 0 auto;
    width: 46px;
    height: 28px;
    border-radius: 999px;
    border: 0;
    background: var(--fx-line-2);
    cursor: pointer;
    transition: background 220ms var(--fx-ease);
}
.fx-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(21, 19, 15, 0.22);
    transition: transform 280ms var(--fx-spring);
}
.fx-switch[aria-checked="true"] { background: var(--fx-ink); }
.fx-switch[aria-checked="true"]::after { transform: translateX(18px); }
.fx-switch-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.fx-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--fx-line-2);
    border-radius: 13px;
    background: var(--fx-surface);
    overflow: hidden;
}
.fx-stepper button {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--fx-ink);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.fx-stepper button:hover { background: var(--fx-bg); }
.fx-stepper button[disabled] { opacity: 0.3; cursor: not-allowed; }
.fx-stepper output { min-width: 44px; text-align: center; font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; }

/* [c16] */

.fx-card {
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-r-lg);
    box-shadow: var(--fx-shadow-1);
    padding: 20px;
}
.fx-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 26px 0 18px;
    color: var(--fx-faint);
    font-size: 13px;
    font-weight: 700;
}
.fx-divider::before, .fx-divider::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--fx-line); }
.fx-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--fx-surface);
    border: 1px dashed var(--fx-line-2);
    font-size: 14px;
    color: var(--fx-ink-2);
}
.fx-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.fx-total b { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.fx-money { font-variant-numeric: tabular-nums; }

/* [c17] */

.fx-swatches {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 4px 10px;
    margin: 0 -4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}
.fx-swatches::-webkit-scrollbar { display: none; }
.fx-swatch {
    flex: 0 0 auto;
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    cursor: pointer;
    scroll-snap-align: start;
    background: conic-gradient(from 200deg, var(--sw-accent) 0 50%, var(--sw-bg) 50% 100%);
    box-shadow: 0 0 0 1px rgba(21, 19, 15, 0.12) inset, var(--fx-shadow-1);
    transition: transform 220ms var(--fx-spring), box-shadow 200ms;
}
.fx-swatch:hover { transform: scale(1.07); }
.fx-swatch.is-on { box-shadow: 0 0 0 2px var(--fx-bg), 0 0 0 4px var(--fx-ink); }
.fx-swatch.is-on::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 7px;
    border-left: 2.5px solid var(--sw-tick, #fff);
    border-bottom: 2.5px solid var(--sw-tick, #fff);
    transform: rotate(-45deg) translate(1px, -1px);
}

/* [c18] */

.fx-sheet {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}
.fx-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(21, 19, 15, 0.42);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 280ms var(--fx-ease);
}
.fx-sheet-card {
    position: relative;
    width: 100%;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
    background: var(--fx-surface);
    border-radius: 24px 24px 0 0;
    box-shadow: var(--fx-shadow-3);
    padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
    transform: translate3d(0, 100%, 0);
    transition: transform 420ms var(--fx-ease);
}
.fx-sheet-card::before {
    content: "";
    display: block;
    width: 40px;
    height: 5px;
    border-radius: 999px;
    background: var(--fx-line-2);
    margin: 0 auto 14px;
}
.fx-sheet-close { position: absolute; top: 10px; right: 10px; }
.fx-sheet.is-open { visibility: visible; pointer-events: auto; }
.fx-sheet.is-open .fx-sheet-backdrop { opacity: 1; }
.fx-sheet.is-open .fx-sheet-card { transform: none; }
@media (min-width: 720px) {
    .fx-sheet { align-items: center; padding: 24px; }
    .fx-sheet-card {
        max-width: 560px;
        border-radius: var(--fx-r-xl);
        padding: 32px 32px 30px;
        transform: translate3d(0, 24px, 0) scale(0.98);
        opacity: 0;
        transition: transform 420ms var(--fx-ease), opacity 260ms var(--fx-ease);
    }
    .fx-sheet-card::before { display: none; }
    .fx-sheet.is-open .fx-sheet-card { opacity: 1; }
    .fx-sheet-wide .fx-sheet-card { max-width: 860px; }
}

/* [c19] */

.fx-toast {
    position: fixed;
    left: 50%;
    bottom: calc(24px + env(safe-area-inset-bottom));
    z-index: 120;
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
    max-width: calc(100vw - 32px);
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--fx-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--fx-shadow-3);
    transition: transform 360ms var(--fx-ease), opacity 260ms;
    pointer-events: none;
}
.fx-toast.is-on { transform: translate3d(-50%, 0, 0); opacity: 1; }
.fx-toast.is-err { background: var(--fx-err); }

.fx-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2.5px solid rgba(21, 19, 15, 0.15);
    border-top-color: var(--fx-ink);
    animation: fx-spin 700ms linear infinite;
    vertical-align: -3px;
}

.fx-bigcheck {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--fx-ok);
    color: #fff;
    box-shadow: 0 0 0 10px var(--fx-ok-soft);
    animation: fx-pop 620ms var(--fx-spring) both;
}
.fx-bigcheck svg { width: 36px; height: 36px; }
.fx-bigcheck path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: fx-draw 520ms 260ms var(--fx-ease) forwards; }

/* [c20] */

.fx-embed {
    position: relative;
    border-radius: var(--fx-r-lg);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-2);
    overflow: hidden;
}
.fx-embed-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 220px;
    color: var(--fx-muted);
    font-size: 14px;
    font-weight: 700;
}
.fx-calendly { width: 100%; height: 720px; border: 0; display: block; background: #fff; }
@media (max-width: 720px) { .fx-calendly { height: 1000px; } }
.fx-stripe { padding: 6px 0; min-height: 300px; }

/* [c21] */

.fx-mock {
    --m-bg: #ffffff;
    --m-elev: #ffffff;
    --m-surface: #ffffff;
    --m-surface2: #f5f5f5;
    --m-border: #e8e8e8;
    --m-ink: #1f1f1f;
    --m-soft: rgba(31, 31, 31, 0.62);
    --m-faint: rgba(31, 31, 31, 0.40);
    --m-accent: #1f1f1f;
    --m-accent-ink: #ffffff;
    --m-lockup: #c4c4c4;
    --m-glow: rgba(31, 31, 31, 0.15);
    --m-wash: linear-gradient(180deg, #ffffff 0 34%, #f5f5f5 78%, #f0f0f0 100%);
    position: relative;
    width: 100%;
    max-width: 680px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--fx-shadow-3), 0 0 0 1px rgba(21, 19, 15, 0.06);
    overflow: hidden;
    transition: box-shadow 400ms var(--fx-ease), transform 500ms var(--fx-ease);
    isolation: isolate;
}
.fx-mock-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    background: #f1efeb;
    border-bottom: 1px solid #e6e2db;
}
.fx-mock-dots { display: flex; gap: 6px; flex: 0 0 auto; }
.fx-mock-dots i { width: 10px; height: 10px; border-radius: 999px; background: #d9d4cc; }
.fx-mock-url {
    flex: 1 1 auto;
    min-width: 0;
    height: 26px;
    margin: 0 auto;
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e6e2db;
    font-size: 12.5px;
    font-weight: 700;
    color: #57524b;
    white-space: nowrap;
    overflow: hidden;
    transition: box-shadow 300ms var(--fx-ease), border-color 300ms;
}
.fx-mock-url svg { width: 12px; height: 12px; flex: 0 0 auto; color: #9c958b; transition: color 300ms; }
.fx-mock-url .fx-mock-domain { overflow: hidden; text-overflow: ellipsis; }
.fx-mock-url .fx-mock-domain.is-ghost { color: #aaa399; }
.fx-mock-url.is-ok { border-color: #b8dfc8; box-shadow: 0 0 0 3px #e3f3ea; }
.fx-mock-url.is-ok svg { color: var(--fx-ok); }
.fx-mock-url.is-typing .fx-mock-domain::after {
    content: "";
    display: inline-block;
    width: 1.5px;
    height: 13px;
    margin-left: 1px;
    vertical-align: -2px;
    background: currentColor;
    animation: fx-blink 1s steps(1) infinite;
}
@keyframes fx-blink { 50% { opacity: 0; } }
.fx-mock-spacer { width: 46px; flex: 0 0 auto; }

.fx-mock-screen {
    position: relative;
    background: var(--m-wash);
    color: var(--m-ink);
    transition: background 500ms var(--fx-ease), color 400ms;
}
.fx-mock-top {
    display: grid;
    /* [c22] */
    grid-template-columns: minmax(60px, 1fr) minmax(0, auto) minmax(60px, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 74px;
    padding: 12px 18px;
    background: var(--m-elev);
    border-bottom: 1px solid var(--m-border);
    transition: background 500ms var(--fx-ease), border-color 500ms;
}
.fx-mock-brand {
    grid-column: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
    max-width: min(320px, 100%);
    padding: 6px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--m-ink);
    font: inherit;
    cursor: default;
}
.fx-mock-logo { display: flex; align-items: center; justify-content: center; height: 34px; max-width: 260px; }
.fx-mock-logo img { max-height: 34px; max-width: 260px; width: auto; height: auto; object-fit: contain; animation: fx-pop 560ms var(--fx-spring) both; }
.fx-mock-name {
    display: block;
    max-width: 280px;
    font-size: 22px;
    line-height: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--m-ink);
    transition: color 400ms;
}
.fx-mock-name.is-ghost { color: var(--m-faint); }
.fx-mock-lockup {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--m-lockup);
    padding-left: 0.42em;
    white-space: nowrap;
    transition: color 400ms;
}
.fx-mock-login {
    grid-column: 3;
    justify-self: end;
    padding: 6px 12px;
    border-radius: 9px;
    border: 1px solid var(--m-border);
    background: var(--m-surface);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--m-ink);
    white-space: nowrap;
    transition: background 400ms, border-color 400ms, color 400ms;
}

/* [c23] */
.fx-mock.is-editable .fx-mock-brand { cursor: pointer; }
.fx-mock.is-editable .fx-mock-brand::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    border: 2px dashed var(--fx-accent);
    opacity: 0.9;
    transition: opacity 200ms, border-color 200ms;
    animation: fx-pulse-ring 2.4s var(--fx-ease) infinite;
}
.fx-mock.is-editable .fx-mock-brand:hover::before { border-style: solid; }
.fx-mock.is-editable.has-logo .fx-mock-brand::before { opacity: 0; animation: none; }
.fx-mock.is-editable.has-logo .fx-mock-brand:hover::before { opacity: 0.6; border-style: dashed; }
.fx-mock-hint {
    position: absolute;
    top: calc(100% + 10px);
    /* [c24] */
    left: -100px;
    right: -100px;
    width: max-content;
    margin: 0 auto;
    z-index: 3;
    display: none;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--fx-ink);
    color: #fff;
    font-size: 12.5px;
    font-weight: 750;
    letter-spacing: -0.005em;
    white-space: nowrap;
    box-shadow: var(--fx-shadow-2);
    pointer-events: none;
    animation: fx-float 3s var(--fx-ease) infinite;
}
.fx-mock-hint::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--fx-ink);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}
.fx-mock-hint svg { width: 14px; height: 14px; }
.fx-mock.is-editable:not(.has-logo) .fx-mock-hint { display: inline-flex; }

.fx-mock-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 26px 22px 24px;
}
.fx-mock-uploader {
    position: relative;
    width: min(420px, 88%);
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    border: 2px solid var(--m-border);
    background: var(--m-surface);
    box-shadow: 0 0 44px var(--m-glow);
    overflow: hidden;
    transition: border-color 500ms, box-shadow 500ms, background 500ms;
}
.fx-mock-uploader img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* [c35] */
    object-position: 50% 40%;
    display: block;
}
.fx-mock-after { clip-path: inset(0 100% 0 0); animation: fx-wipe 7.2s var(--fx-ease) infinite; }
.fx-mock-seam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
    animation: fx-seam 7.2s var(--fx-ease) infinite;
}
.fx-mock-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.fx-mock-tag-after { opacity: 0; animation: fx-tag-after 7.2s var(--fx-ease) infinite; }
.fx-mock-tag-before { animation: fx-tag-before 7.2s var(--fx-ease) infinite; }
@keyframes fx-wipe {
    0%, 18%   { clip-path: inset(0 100% 0 0); }
    38%, 82%  { clip-path: inset(0 0 0 0); }
    92%, 100% { clip-path: inset(0 100% 0 0); }
}
@keyframes fx-seam {
    0%, 18%   { left: 0; opacity: 0; }
    20%       { opacity: 1; }
    38%       { left: 100%; opacity: 1; }
    40%, 82%  { left: 100%; opacity: 0; }
    84%       { opacity: 1; }
    92%       { left: 0; opacity: 1; }
    94%, 100% { left: 0; opacity: 0; }
}
@keyframes fx-tag-after  { 0%, 34% { opacity: 0; } 40%, 80% { opacity: 1; } 86%, 100% { opacity: 0; } }
@keyframes fx-tag-before { 0%, 22% { opacity: 1; } 28%, 88% { opacity: 0; } 94%, 100% { opacity: 1; } }

.fx-mock-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 26px;
    border-radius: 12px;
    background: var(--m-accent);
    color: var(--m-accent-ink);
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 10px 22px -12px var(--m-accent);
    transition: background 500ms var(--fx-ease), color 400ms, box-shadow 500ms;
}
.fx-mock-or {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(240px, 60%);
    font-size: 11px;
    color: var(--m-faint);
}
.fx-mock-or::before, .fx-mock-or::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--m-border); }
.fx-mock-ghost {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--m-border);
    background: var(--m-surface);
    color: var(--m-ink);
    font-size: 12.5px;
    font-weight: 700;
    transition: background 400ms, border-color 400ms, color 400ms;
}

/* [c25] */
.fx-mock-notify {
    position: absolute;
    top: 96px;
    right: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 280px;
    padding: 10px 14px 10px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--fx-ink);
    box-shadow: var(--fx-shadow-3);
    font-size: 12.5px;
    line-height: 1.35;
    transform: translate3d(24px, 0, 0) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 520ms var(--fx-spring), opacity 300ms var(--fx-ease);
}
.fx-mock-notify.is-on { transform: none; opacity: 1; }
.fx-mock-notify i {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--fx-accent-soft);
    color: var(--fx-accent-2);
    display: grid;
    place-items: center;
}
.fx-mock-notify i svg { width: 16px; height: 16px; }
.fx-mock-notify b { display: block; font-size: 12.5px; font-weight: 800; }
.fx-mock-notify span { color: var(--fx-muted); font-weight: 600; }
.fx-mock-badge {
    position: absolute;
    /* [c26] */
    left: 12px;
    top: 12px;
    z-index: 4;
    padding: 7px 12px;
    border-radius: 10px;
    background: var(--fx-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    box-shadow: var(--fx-shadow-2);
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    transition: opacity 300ms, transform 420ms var(--fx-spring);
}
.fx-mock-badge.is-on { opacity: 1; transform: none; }

/* [c27] */
.fx-stage .fx-mock { animation: fx-float 9s ease-in-out infinite; }
.fx-mock.is-flash { box-shadow: var(--fx-shadow-3), 0 0 0 3px var(--fx-accent-ring); }

/* [c28] */
.fx-mock.is-compact { border-radius: 16px; box-shadow: var(--fx-shadow-2), 0 0 0 1px rgba(21, 19, 15, 0.06); }
.fx-mock.is-compact .fx-mock-bar { height: 34px; }
.fx-mock.is-compact .fx-mock-dots i { width: 8px; height: 8px; }
.fx-mock.is-compact .fx-mock-url { height: 22px; font-size: 11.5px; }
.fx-mock.is-compact .fx-mock-top { min-height: 58px; padding: 8px 12px; }
.fx-mock.is-compact .fx-mock-name { font-size: 17px; line-height: 26px; }
.fx-mock.is-compact .fx-mock-logo, .fx-mock.is-compact .fx-mock-logo img { height: 26px; max-height: 26px; }
.fx-mock.is-compact .fx-mock-body { display: none; }
.fx-mock.is-compact .fx-mock-login { font-size: 10px; padding: 4px 8px; }

/* [c29] */
.fx-mock.is-short .fx-mock-body { padding: 14px 14px 16px; gap: 12px; }
.fx-mock.is-short .fx-mock-uploader { width: min(300px, 84%); aspect-ratio: 16 / 10; border-radius: 14px; }
.fx-mock.is-short .fx-mock-or, .fx-mock.is-short .fx-mock-ghost { display: none; }
/* [c34] */
.fx-mock .fx-mock-or, .fx-mock .fx-mock-ghost { display: none; }

/* [c30] */
@media (max-width: 1023px) {
    .fx-mock .fx-mock-body { padding: 18px 16px 18px; gap: 11px; }
    .fx-mock .fx-mock-top { min-height: 64px; padding: 10px 12px; grid-template-columns: minmax(52px, 1fr) minmax(0, auto) minmax(52px, 1fr); }
    .fx-mock .fx-mock-brand { padding: 6px 8px; }
    /* [c31] */
    .fx-mock .fx-mock-name { font-size: 19px; line-height: 30px; max-width: 200px; }
    .fx-mock .fx-mock-logo, .fx-mock .fx-mock-logo img { height: 30px; max-height: 30px; }
    .fx-mock .fx-mock-cta { min-height: 36px; font-size: 13px; }
    .fx-mock .fx-mock-login { font-size: 10.5px; padding: 5px 9px; }
    .fx-mock .fx-mock-spacer { width: 20px; }
}

/* [c32] */

@media (prefers-reduced-motion: reduce) {
    .fx-app *, .fx-app *::before, .fx-app *::after, .fx-sheet *, .fx-toast {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
    .fx-step.is-active { animation: fx-fade-in 200ms linear both !important; }
    .fx-mock-after { clip-path: none; }
    .fx-mock-seam, .fx-mock-tag-before { display: none; }
    .fx-mock-tag-after { opacity: 1; }
    .fx-stage .fx-mock, .fx-mock-hint { animation: none !important; }
}
