/* [c1] */

/* [c2] */

.su-top { gap: 14px; }
.su-lockup {
    flex: 0 0 auto;
    padding-left: 14px;
    border-left: 1.5px solid var(--fx-line-2);
    font-size: 15px;
    line-height: 20px;
    font-weight: 750;
    letter-spacing: -0.01em;
    color: var(--fx-muted);
}
.su-top-mid { gap: 12px; }
.su-top-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--fx-ink);
    font-size: 14px;
    font-weight: 800;
}
.su-domain {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 1 auto;
    min-width: 0;
    height: 28px;
    padding: 0 11px 0 9px;
    border-radius: 999px;
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-1);
    font-size: 12.5px;
    font-weight: 750;
    color: var(--fx-ink-2);
    white-space: nowrap;
}
.su-domain > span { overflow: hidden; text-overflow: ellipsis; }
.su-domain svg { width: 12px; height: 12px; flex: 0 0 auto; color: var(--fx-ok); }

.su-saved {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
    font-size: 13px;
    font-weight: 750;
    color: var(--fx-ok);
    opacity: 0;
    transform: translate3d(0, 4px, 0);
    transition: opacity 260ms var(--fx-ease), transform 320ms var(--fx-ease), color 200ms;
    pointer-events: none;
}
.su-saved svg { width: 14px; height: 14px; }
.su-saved.is-on { opacity: 1; transform: none; }
.su-saved.is-saving { color: var(--fx-faint); }
.su-saved.is-saving svg { display: none; }

@media (max-width: 1023px) {
    .su-top-mid > * { display: none; }
    .su-lockup { padding-left: 12px; font-size: 14px; }
}
@media (max-width: 380px) {
    .su-saved > span { display: none; }
}
@media (min-width: 1024px) {
    .su-top { border-bottom: 1px solid var(--fx-line); }
    .su-progress { display: none; }
}

/* [c3] */

.su-body { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }
.su-rail { display: none; }
.su-main { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }
.su-main-inner {
    flex: 1 1 auto;
    width: 100%;
    max-width: 792px;
    margin: 0 auto;
    padding: 18px 16px 0;
    display: flex;
    flex-direction: column;
}
.su-steps { flex: 1 1 auto; display: flex; flex-direction: column; }
.su-step .fx-h2 { margin-bottom: 20px; }
.su-app [tabindex="-1"]:focus, .su-app [tabindex="-1"]:focus-visible { outline: none; }
.su-step .fx-h2 + .fx-sub { margin-top: -10px; }

.su-eyebrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 28px; margin: 0 0 10px; }
.su-eyebrow .fx-eyebrow { margin: 0; }
.su-eyebrow .su-domain { max-width: 58%; }

@media (min-width: 1024px) {
    .su-body {
        display: grid;
        grid-template-columns: 272px minmax(0, 1fr);
        align-items: start;
    }
    .su-rail {
        display: flex;
        flex-direction: column;
        position: sticky;
        top: var(--fx-top-h);
        height: calc(100vh - var(--fx-top-h));
        height: calc(100dvh - var(--fx-top-h));
        padding: 28px 16px 20px 22px;
        border-right: 1px solid var(--fx-line);
        overflow-y: auto;
        scrollbar-width: thin;
    }
    .su-main-inner {
        min-height: calc(100vh - var(--fx-top-h));
        min-height: calc(100dvh - var(--fx-top-h));
        padding: 36px clamp(32px, 4vw, 56px) 0;
        max-width: 872px;
    }
    .su-steps { flex: 0 0 auto; }
    .su-eyebrow { display: none; }
}

/* [c4] */

.su-rail-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.su-rail-list li { position: relative; }
.su-rail-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    min-height: 44px;
    padding: 9px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--fx-ink-2);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    text-align: left;
    cursor: pointer;
    transition: background 200ms var(--fx-ease), color 200ms, box-shadow 220ms var(--fx-ease);
}
/* [c5] */
.su-rail-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 24.25px;
    top: 35px;
    bottom: -11px;
    width: 1.5px;
    background: var(--fx-line-2);
    transition: background 300ms;
}
.su-rail-list li.is-done-li:not(:last-child)::after { background: var(--fx-ink); }
.su-rail-item:hover:not([disabled]) { background: rgba(21, 19, 15, 0.045); color: var(--fx-ink); }
.su-rail-item[disabled] { cursor: default; }
.su-rail-item[disabled]:not(.is-current):not(.is-done) { color: var(--fx-faint); }
.su-rail-dot {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-bg);
    color: var(--fx-muted);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    transition: background 240ms var(--fx-ease), border-color 240ms, color 200ms, box-shadow 300ms var(--fx-ease);
}
.su-rail-dot svg {
    position: absolute;
    width: 13px;
    height: 13px;
    color: #fff;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 180ms, transform 280ms var(--fx-spring);
}
.su-rail-num { transition: opacity 160ms; }
.su-rail-item.is-done .su-rail-dot { background: var(--fx-ink); border-color: var(--fx-ink); }
.su-rail-item.is-done .su-rail-num { opacity: 0; }
.su-rail-item.is-done .su-rail-dot svg { opacity: 1; transform: none; }
.su-rail-item.is-current {
    background: var(--fx-surface);
    color: var(--fx-ink);
    box-shadow: var(--fx-shadow-1), 0 0 0 1px var(--fx-line);
}
.su-rail-item.is-current .su-rail-dot {
    background: var(--fx-accent);
    border-color: var(--fx-accent);
    color: #fff;
    box-shadow: 0 0 0 4px var(--fx-accent-soft);
}
.su-rail-name { min-width: 0; padding-top: 3px; line-height: 1.3; }

.su-rail-foot { margin-top: auto; padding: 18px 12px 0; }
.su-mail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fx-muted);
    font-size: 13.5px;
    text-decoration: none;
}
.su-mail-link:hover { color: var(--fx-ink); }
.su-mail-link svg { width: 16px; height: 16px; }
.su-mail-link.is-busy { opacity: 0.5; pointer-events: none; }

/* [c6] */

.su-bar {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px -16px 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(245, 243, 239, 0.92);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    backdrop-filter: saturate(1.4) blur(14px);
    border-top: 1px solid var(--fx-line);
}
.su-bar .su-next { flex: 1 1 auto; margin-left: auto; }
.su-back { padding: 0 10px; gap: 6px; }
.su-back svg { width: 18px; height: 18px; }
.su-next-pay { background: var(--fx-ink); }

@media (min-width: 1024px) {
    .su-bar {
        margin: 24px 0 0;
        padding: 14px 0 24px;
        border-top: 0;
        background: linear-gradient(to top, var(--fx-bg) 72%, rgba(245, 243, 239, 0));
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .su-bar .su-next { flex: 0 0 auto; min-width: 210px; }
}

/* [c7] */

.su-err { margin-top: 16px; }
.su-err:empty { display: none; }
.su-opt { font-style: normal; font-weight: 600; color: var(--fx-faint); margin-left: 6px; }
.su-field-gap { margin-top: 26px; }
.su-radios { gap: 10px; }
.su-choice { min-height: 64px; }
.su-choice .fx-choice-ico { width: 42px; height: 42px; border-radius: 12px; }
.su-choice .fx-choice-ico svg { width: 22px; height: 22px; }
.su-h3 { margin: 36px 0 14px; font-size: 20px; line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
.su-ibtn { width: 44px; height: 44px; color: var(--fx-muted); }
.su-ibtn:hover { color: var(--fx-ink); }
.su-ibtn svg { width: 18px; height: 18px; }

.su-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 60px;
    margin-top: 10px;
    padding: 0 18px;
    border: 1.5px dashed var(--fx-line-2);
    border-radius: var(--fx-r);
    background: transparent;
    color: var(--fx-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 200ms, background 200ms, transform 160ms var(--fx-ease);
}
.su-add:hover { border-color: var(--fx-ink-2); background: rgba(255, 255, 255, 0.7); }
.su-add:active { transform: scale(0.99); }
.su-add svg { width: 18px; height: 18px; }
.su-add.is-empty { min-height: 132px; margin-top: 0; font-size: 16px; background: rgba(255, 255, 255, 0.45); }
.su-add.is-empty svg {
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 14px;
    background: var(--fx-ink);
    color: #fff;
    margin-right: 6px;
}
.su-add-inline { width: auto; min-height: 44px; margin: 0; padding: 0 16px 0 12px; font-size: 14.5px; }

.su-rows-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; min-height: 22px; }
.su-rows-foot-end { justify-content: flex-end; }
.su-rows-foot .fx-fine { font-variant-numeric: tabular-nums; font-weight: 650; }

/* [c8] */

.su-look { display: flex; flex-direction: column; gap: 20px; }
.su-look-mock .fx-mock { max-width: none; }
.su-group + .su-group { margin-top: 18px; }
.su-logo-actions { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.su-logo-actions .fx-btn-ghost { min-width: 140px; }

@media (max-width: 1023px) {
    .su-logo-actions .fx-btn { --fx-btn-h: 48px; }
    .su-group-logo.is-empty { display: none; }
    .su-group-logo .fx-label { display: none; }
    .su-look { gap: 16px; }
    /* [c30] */
    .su-swatches { justify-content: space-between; gap: 4px; }
}
@media (max-width: 380px) {
    .su-swatches .fx-swatch { width: 42px; height: 42px; }
}
@media (max-width: 1023px) and (max-height: 760px) {
    .su-look .fx-mock .fx-mock-top { min-height: 56px; padding: 6px 12px; }
    .su-look .fx-mock.is-short .fx-mock-body { padding: 12px 14px 14px; gap: 10px; }
    .su-look .fx-mock.is-short .fx-mock-uploader { aspect-ratio: 2 / 1; width: min(280px, 76%); }
}

@media (min-width: 1024px) {
    .su-look { display: grid; grid-template-columns: minmax(0, 1fr) 216px; gap: 36px; align-items: start; }
    .su-look .fx-mock .fx-mock-top { min-height: 66px; padding: 8px 18px; }
    .su-look .fx-mock .fx-mock-body { padding: 16px 20px 18px; gap: 10px; }
    .su-look .fx-mock .fx-mock-uploader { aspect-ratio: 16 / 10; width: min(372px, 80%); }
    .su-look-side { padding-top: 6px; }
    /* [c9] */
    .su-app[data-step="look"] .su-bar { background: none; }
    .su-swatches { flex-wrap: wrap; overflow: visible; margin: 0 -4px; padding: 4px; }
    .su-group + .su-group { margin-top: 28px; }
    .su-logo-actions { flex-direction: column; align-items: stretch; gap: 4px; }
    .su-logo-actions .fx-btn-ghost { width: 100%; }
}

@media (min-width: 1024px) and (max-height: 860px) {
    .su-look .fx-mock .fx-mock-or, .su-look .fx-mock .fx-mock-ghost { display: none; }
    .su-look .fx-mock .fx-mock-uploader { aspect-ratio: 16 / 9; width: min(340px, 70%); }
}

/* [c10] */

.su-meter { padding: 18px 20px 18px; margin-bottom: 12px; }
.su-meter-top { display: flex; align-items: baseline; justify-content: space-between; gap: 6px 16px; flex-wrap: wrap; }
.su-meter-count { font-size: 15px; font-weight: 650; color: var(--fx-muted); }
.su-meter-count b {
    margin-right: 2px;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--fx-ink);
    font-variant-numeric: tabular-nums;
    transition: color 300ms;
}
.su-meter-fee { font-size: 14px; font-weight: 650; color: var(--fx-muted); }
.su-meter-fee b { font-size: 17px; font-weight: 800; color: var(--fx-ink); font-variant-numeric: tabular-nums; }
.su-meter-bar { height: 6px; margin-top: 14px; border-radius: 999px; background: var(--fx-bg-2); overflow: hidden; }
.su-meter-bar i { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--fx-ink); transition: width 520ms var(--fx-ease), background 300ms; }
.su-meter.is-warn .su-meter-bar i { background: var(--fx-accent); }
.su-meter.is-over .su-meter-bar i { background: var(--fx-err); }
.su-meter.is-over .su-meter-count b { color: var(--fx-err); }

.su-upgrade {
    margin-bottom: 12px;
    padding: 16px;
    border-radius: var(--fx-r-lg);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    animation: fx-rise 360ms var(--fx-ease) both;
}
.su-upgrade.is-over { background: var(--fx-accent-soft); border-color: #f3cdb0; }
/* [c11] */
.su-upgrade { scroll-margin-top: calc(var(--fx-top-h) + 16px); scroll-margin-bottom: 96px; outline: 2px solid transparent; outline-offset: 3px; transition: outline-color 300ms var(--fx-ease); }
.su-upgrade.is-attn { outline-color: var(--fx-accent); }
.su-upgrade.fx-shake { animation: fx-shake 380ms var(--fx-ease) both; }
.su-upgrade-title { margin: 2px 2px 12px; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.su-upgrade-list { gap: 8px; }
.su-plan-choice { min-height: 58px; padding: 10px 16px; }
.su-plan-choice .fx-choice-text b { font-size: 16px; }
.su-plan-choice .fx-choice-text small { font-size: 13.5px; }
.su-upgrade-fine { margin: 10px 2px 0; }

.su-products { display: flex; flex-direction: column; gap: 10px; }
.su-prod {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px 12px 12px;
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-r);
    box-shadow: var(--fx-shadow-1);
}
.su-prod-ico {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--fx-bg);
    color: var(--fx-ink-2);
}
.su-prod-ico svg { width: 22px; height: 22px; }
.su-prod-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.su-prod-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.su-prod-meta { display: flex; flex-wrap: wrap; gap: 2px 14px; font-size: 13.5px; font-weight: 600; color: var(--fx-muted); }
.su-prod-math { color: var(--fx-ink-2); font-variant-numeric: tabular-nums; }
.su-prod-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 0; }
.su-rm.is-armed {
    width: auto;
    padding: 0 12px;
    background: var(--fx-err-soft);
    color: var(--fx-err);
    font-size: 13px;
    font-weight: 800;
    animation: fx-pop 260ms var(--fx-spring) both;
}

.su-editor {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-color: var(--fx-line-2);
    box-shadow: var(--fx-shadow-2);
    animation: fx-rise 340ms var(--fx-ease) both;
}
.su-editor-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 720px) { .su-editor-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px 14px; } }
.su-bar.is-editing { display: none; }
.su-editor-err { margin: 0; }
.su-editor-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--fx-line);
}
.su-editor-count { font-size: 14px; font-weight: 650; color: var(--fx-muted); font-variant-numeric: tabular-nums; }
.su-editor-count b { color: var(--fx-ink); font-weight: 800; }
.su-editor-btns { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.su-editor { scroll-margin-top: calc(var(--fx-top-h) + 15px); }
@media (max-width: 560px) {
    /* [c12] */
    .su-editor-btns { width: 100%; }
    .su-editor-btns .fx-btn { --fx-btn-h: 50px; font-size: 15px; }
    .su-editor-save { flex: 1 1 auto; }
}

/* [c13] */

.su-chipin {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-height: 54px;
    padding: 7px;
    border-radius: 13px;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-surface);
    cursor: text;
    transition: border-color 180ms var(--fx-ease), box-shadow 180ms var(--fx-ease);
}
.su-chipin:hover { border-color: #c3bbae; }
.su-chipin:focus-within { border-color: var(--fx-ink); box-shadow: 0 0 0 4px rgba(21, 19, 15, 0.07); }
.su-chipin.is-invalid { border-color: var(--fx-err); box-shadow: 0 0 0 4px var(--fx-err-soft); }
.su-chipin-list { display: contents; }
.su-chip {
    min-height: 36px;
    max-width: 100%;
    padding: 0 6px 0 12px;
    gap: 4px;
    background: var(--fx-bg);
    border-color: transparent;
    cursor: default;
    font-size: 14px;
}
.su-chip:hover { border-color: transparent; }
.su-chip-t { overflow: hidden; text-overflow: ellipsis; }
.su-chip .fx-chip-x {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}
.su-chip .fx-chip-x:hover { background: rgba(21, 19, 15, 0.08); }
.su-chip .fx-chip-x::after, .su-cchip .fx-chip-x::after { content: ""; position: absolute; inset: -6px; }
.su-chip { padding-right: 2px; }
.su-chipin-input {
    flex: 1 1 160px;
    min-width: 120px;
    height: 38px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    color: var(--fx-ink);
    font-size: 16px;
    font-weight: 600;
}
.su-chipin-input:focus { outline: none; }
.su-chipin-input::placeholder { color: var(--fx-faint); font-weight: 500; }
.su-chipin-lg { min-height: 64px; padding: 10px; }
.su-chipin-lg .su-chip { min-height: 40px; font-size: 15px; background: var(--fx-bg-2); }

/* [c14] */

.su-brandbar {
    position: sticky;
    top: calc(var(--fx-top-h) + 3px);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 14px;
    /* [c15] */
    margin: -6px -4px 6px;
    padding: 6px 4px 12px;
    background: var(--fx-bg);
}
.su-search {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 14px;
    border-radius: 13px;
    border: 1.5px solid var(--fx-line-2);
    background: var(--fx-surface);
    transition: border-color 180ms, box-shadow 180ms;
}
.su-search:focus-within { border-color: var(--fx-ink); box-shadow: 0 0 0 4px rgba(21, 19, 15, 0.07); }
.su-search svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--fx-muted); }
.su-search input { flex: 1 1 auto; min-width: 0; height: 100%; border: 0; background: transparent; color: var(--fx-ink); font-size: 16px; font-weight: 600; }
.su-search input:focus { outline: none; }
.su-search input::placeholder { color: var(--fx-faint); font-weight: 500; }
@media (min-width: 1024px) { .su-brandbar { top: var(--fx-top-h); } }
/* [c16] */
.su-brandbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    background: linear-gradient(var(--fx-bg), rgba(245, 243, 239, 0));
    pointer-events: none;
}
.su-count { flex: 0 0 auto; font-size: 14px; font-weight: 750; color: var(--fx-faint); white-space: nowrap; font-variant-numeric: tabular-nums; transition: color 200ms; }
.su-count.is-some { color: var(--fx-ink); }

/* [c17] */
.su-brands { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 480px) { .su-brands { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; } }
@media (min-width: 1200px) { .su-brands { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.su-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 6px;
    min-width: 0;
    min-height: 72px;
    padding: 12px 34px 12px 14px;
    border-radius: var(--fx-r);
    border: 1.5px solid var(--fx-line);
    background: var(--fx-surface);
    box-shadow: var(--fx-shadow-1);
    color: var(--fx-ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 200ms var(--fx-ease), box-shadow 240ms var(--fx-ease), transform 200ms var(--fx-ease);
}
.su-brand[hidden] { display: none; }
.su-brand:hover { border-color: var(--fx-line-2); box-shadow: var(--fx-shadow-2); transform: translateY(-1px); }
.su-brand:active { transform: scale(0.985); }
.su-brand.is-on { border-color: var(--fx-ink); box-shadow: 0 0 0 1px var(--fx-ink), var(--fx-shadow-2); }
.su-brand-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.015em;
}
.su-brand.is-text .su-brand-name { overflow-wrap: break-word; }

/* [c18] */
.su-brand.is-logo { padding: 6px; }
.su-brand-logo {
    flex: 1 1 auto;
    min-height: 56px;
    border-radius: 11px;
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.su-brand-logo.is-light { background: var(--fx-ink); }
.su-brand-logo img { max-width: 72%; max-height: 38px; width: auto; height: auto; object-fit: contain; }
.su-brand.is-logo .su-brand-tag { margin: 0 4px 2px; }

/* [c19] */
.su-brand.is-generic {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 12px 48px 12px 12px;
}
.su-brand-gico {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--fx-bg);
    color: var(--fx-ink-2);
    transition: background 200ms, color 200ms;
}
.su-brand-gico svg { width: 24px; height: 24px; }
.su-brand.is-generic.is-on .su-brand-gico { background: var(--fx-accent-soft); color: var(--fx-accent-2); }
.su-brand-text { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.su-brand-sub { font-size: 13.5px; line-height: 1.35; font-weight: 600; color: var(--fx-muted); }

.su-brand-tag {
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--fx-accent-soft);
    color: var(--fx-accent-2);
    font-size: 11.5px;
    font-weight: 800;
    white-space: nowrap;
}
.su-brand-check {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--fx-ink);
    color: #fff;
    box-shadow: 0 0 0 2.5px #fff;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 180ms, transform 280ms var(--fx-spring);
}
.su-brand-check svg { width: 12px; height: 12px; }
.su-brand.is-on .su-brand-check { opacity: 1; transform: none; }
.su-brand.is-generic .su-brand-check { top: 50%; right: 14px; margin-top: -12px; width: 24px; height: 24px; box-shadow: none; }
.su-brand.is-generic:not(.is-on) .su-brand-check { opacity: 1; transform: none; background: transparent; box-shadow: inset 0 0 0 1.5px var(--fx-line-2); }
.su-brand.is-generic:not(.is-on) .su-brand-check svg { opacity: 0; }
@media (max-width: 479px) {
    .su-brand { min-height: 64px; padding: 10px 30px 10px 12px; }
    .su-brand-name { font-size: 15px; }
    .su-brand.is-logo { padding: 5px; }
    .su-brand-logo { min-height: 52px; }
    .su-brand.is-generic { padding: 10px 46px 10px 10px; }
}
.su-empty { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 32px 16px; color: var(--fx-muted); font-weight: 650; text-align: center; }

/* [c20] */

.su-rows { display: flex; flex-direction: column; gap: 10px; }
.su-rows-head { display: none; }
.su-row { position: relative; }
.su-row .fx-input, .su-row .fx-select { height: 48px; font-size: 15px; border-radius: 12px; }
.su-row-n { display: none; }

.su-req-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
    grid-template-areas: "brand product x" "url url url";
    gap: 8px;
    padding: 10px;
    border-radius: var(--fx-r);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-1);
}
.su-req-grid [data-f="brand"] { grid-area: brand; }
.su-req-grid [data-f="product"] { grid-area: product; }
.su-req-grid [data-f="url"] { grid-area: url; }
.su-req-grid .su-row-x { grid-area: x; align-self: center; }
.su-rows-head.su-req-grid { display: none; }

.su-owner { margin-bottom: 10px; }
.su-member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--fx-r);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-1);
}
.su-member-id { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.su-member-id b { font-size: 15.5px; font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.su-member-id span { font-size: 13.5px; font-weight: 600; color: var(--fx-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.su-avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--fx-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.su-avatar-ghost { background: var(--fx-bg-2); color: var(--fx-muted); }
.su-role-tag { flex: 0 0 auto; padding: 5px 11px; border-radius: 999px; background: var(--fx-bg-2); font-size: 12.5px; font-weight: 800; color: var(--fx-ink-2); }

.su-member-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px 44px;
    grid-template-areas: "name role x" "email email email";
    gap: 8px;
    padding: 10px;
    border-radius: var(--fx-r);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-1);
}
.su-member-grid .su-avatar { display: none; }
.su-member-grid [data-f="name"] { grid-area: name; }
.su-member-grid [data-f="email"] { grid-area: email; }
.su-member-grid [data-f="role"] { grid-area: role; }
.su-member-grid .su-row-x { grid-area: x; align-self: center; }
.su-roles-fine { margin: 18px 0 0; }

@media (min-width: 760px) {
    .su-rows-head {
        display: grid;
        padding: 0 10px 8px;
        font-size: 13px;
        font-weight: 700;
        color: var(--fx-ink-2);
    }
    .su-req-grid, .su-rows-head.su-req-grid {
        grid-template-columns: 26px minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1.5fr) 44px;
        grid-template-areas: "n brand product url x";
        align-items: center;
    }
    .su-rows-head.su-req-grid { display: grid; background: none; border: 0; box-shadow: none; padding-top: 0; padding-bottom: 8px; }
    .su-rows-head.su-req-grid span:nth-child(1) { grid-column: 2; }
    .su-rows-head.su-req-grid span:nth-child(2) { grid-column: 3; }
    .su-rows-head.su-req-grid span:nth-child(3) { grid-column: 4; }
    .su-req-grid .su-row-n {
        grid-area: n;
        display: grid;
        place-items: center;
        width: 26px;
        height: 26px;
        border-radius: 999px;
        background: var(--fx-bg);
        font-size: 12px;
        font-weight: 800;
        color: var(--fx-muted);
        font-variant-numeric: tabular-nums;
    }
    .su-member-grid {
        grid-template-columns: 40px minmax(0, 1fr) minmax(0, 1.35fr) 130px 44px;
        grid-template-areas: "av name email role x";
        align-items: center;
    }
    .su-member-grid .su-avatar { display: grid; grid-area: av; }
}

/* [c21] */

.su-cchips { gap: 8px; }
.su-cchip { cursor: default; padding: 0 2px 0 12px; }
.su-cchip:hover { border-color: var(--fx-line-2); }
.su-cchip .fi, .su-region-name .fi, .su-ta-opt .fi, .su-fact-flag .fi {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    background-size: cover;
    box-shadow: 0 0 0 1px rgba(21, 19, 15, 0.1);
    flex: 0 0 auto;
}
.su-cchip .fx-chip-x { position: relative; width: 32px; height: 32px; margin: 0; padding: 0; border: 0; border-radius: 999px; background: transparent; cursor: pointer; color: inherit; }
.su-cchip .fx-chip-x:hover { background: rgba(21, 19, 15, 0.08); }
.su-cchip, .su-cadd { min-height: 44px; }
.su-cadd { border-style: dashed; color: var(--fx-ink-2); gap: 6px; padding: 0 16px 0 12px; }
.su-cadd svg { width: 16px; height: 16px; }

.su-typeahead { position: relative; margin-top: 12px; max-width: 440px; animation: fx-rise 260ms var(--fx-ease) both; }
.su-ta-ico { position: absolute; left: 16px; top: 18px; width: 18px; height: 18px; color: var(--fx-muted); pointer-events: none; }
.su-ta-ico svg { width: 18px; height: 18px; display: block; }
.su-ta-input { padding-left: 44px; }
.su-ta-list {
    margin-top: 6px;
    max-height: 316px;
    overflow-y: auto;
    padding: 6px;
    border-radius: 14px;
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-2);
}
.su-ta-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--fx-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}
.su-ta-opt.is-at, .su-ta-opt:hover { background: var(--fx-bg); }
.su-ta-none { padding: 12px; color: var(--fx-muted); font-size: 14px; font-weight: 600; }

.su-regions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.su-regions:empty { display: none; }
.su-region-card { padding: 12px 10px 16px 16px; }
.su-region-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "name x" "seg seg";
    align-items: center;
    gap: 6px 8px;
}
.su-region-name { grid-area: name; display: inline-flex; align-items: center; gap: 10px; min-width: 0; font-size: 16px; }
.su-region-head .fx-seg { grid-area: seg; margin-right: 6px; }
.su-region-x { grid-area: x; }
@media (min-width: 561px) {
    .su-region-head { grid-template-columns: minmax(0, 1fr) auto auto; grid-template-areas: "name seg x"; }
    .su-region-head .fx-seg { margin-right: 0; }
}
.su-region-name .fi { width: 24px; height: 18px; }
.su-seg-sm { padding: 3px; }
.su-seg-sm button { min-height: 38px; padding: 0 14px; font-size: 13.5px; }
.su-region-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 6px 0 0; padding-top: 14px; border-top: 1px solid var(--fx-line); }
.su-rchip { min-height: 36px; padding: 0 12px; font-size: 13.5px; }
.su-region-count { margin: 12px 6px 0 0; font-variant-numeric: tabular-nums; }
.su-where-fine { margin: 20px 0 0; }

@media (max-width: 560px) {
    .su-region-head .fx-seg { display: flex; }
    .su-region-head .fx-seg button { flex: 1 1 0; }
}

/* [c22] */

.su-switchline {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: var(--fx-r);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-1);
    font-size: 15px;
    font-weight: 700;
    animation: fx-rise 300ms var(--fx-ease) both;
}
.su-tap { cursor: pointer; -webkit-tap-highlight-color: transparent; user-select: none; }
.su-same { min-height: 44px; }
.su-seg { display: flex; width: 100%; }
.su-seg button { flex: 1 1 0; min-height: 50px; padding: 6px 12px; line-height: 1.2; font-size: 14.5px; }

/* [c23] */

.su-free { display: grid; gap: 14px; }
@media (min-width: 1024px) { .su-free { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; } }
.su-set { padding: 4px 18px 6px; }
.su-set[hidden] { display: none; }
.su-set-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 58px; }
.su-set-title { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.su-same { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--fx-ink-2); }
.su-same[hidden] { display: none; }
.su-set-rows[hidden] { display: none; }
.su-setrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 66px; border-top: 1px solid var(--fx-line); }
.su-setrow-sub { animation: fx-rise 280ms var(--fx-ease) both; }
.su-setrow-l { font-size: 15px; font-weight: 650; color: var(--fx-ink-2); }
.su-select-sm { width: auto; min-width: 158px; height: 46px; padding-left: 14px; font-size: 15px; border-radius: 12px; }
.su-stepper button { width: 42px; height: 42px; }
.su-stepper button svg { width: 16px; height: 16px; }
.su-stepper output { min-width: 40px; }

/* [c24] */

.su-review { display: grid; gap: 12px; }
.su-review[hidden] { display: none; }
@media (min-width: 720px) { .su-review { grid-template-columns: 1fr 1fr; } }
.su-rcard {
    min-width: 0;
    padding: 15px 18px 17px;
    border-radius: var(--fx-r-lg);
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow-1);
}
.su-rcard-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 24px; margin-bottom: 8px; }
.su-rcard-title { font-size: 11.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--fx-muted); }
.su-rcard-edit { font-size: 14px; padding: 12px; margin: -12px; }
.su-rcard-facts { display: flex; flex-direction: column; gap: 3px; min-width: 0; font-size: 14.5px; font-weight: 600; color: var(--fx-muted); }
.su-fact {
    min-width: 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.su-fact.is-first { color: var(--fx-ink); font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.su-fact.su-fact-strong, .su-fact.su-fact-flag { display: flex; align-items: center; gap: 9px; }
.su-fact-flag > span:last-child, .su-fact-strong > span:last-child { overflow: hidden; text-overflow: ellipsis; }
.su-dot {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    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.14) inset;
}

.su-fee { margin: 0 0 12px; padding: 18px 20px; }
.su-fee-lines { display: flex; flex-direction: column; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--fx-line); }
.su-fee-line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 650; }
.su-fee-l { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.su-fee-l small { font-size: 13px; font-weight: 600; color: var(--fx-muted); }
.su-fee-a { flex: 0 0 auto; font-weight: 750; white-space: nowrap; }
.su-fee-total { padding-top: 14px; }
.su-fee-total > span:first-child { font-size: 15px; font-weight: 750; color: var(--fx-ink-2); }
.su-fee-total small { font-size: 13px; font-weight: 700; color: var(--fx-muted); }
.su-fee.is-paid .su-fee-total > span:first-child { color: var(--fx-ok); }
.su-pay { margin-top: 14px; }
.su-pay[hidden] { display: none; }

/* [c25] */

.su-app.is-final .su-rail,
.su-app.is-final .su-bar,
.su-app.is-final .su-eyebrow,
.su-app.is-final .su-progress { display: none; }
.su-app.is-final .su-body { display: flex; align-items: stretch; }
.su-app.is-final .su-main-inner { max-width: 792px; }
.su-app.is-final .su-steps { flex: 1 1 auto; }

.su-done { align-items: center; justify-content: center; text-align: center; padding: 36px 0 72px; flex: 1 1 auto; }
.su-done.is-active { display: flex; }
.su-done .fx-bigcheck { margin: 0 auto 28px; }
.su-done .fx-h1 { margin-bottom: 12px; }
.su-done .fx-sub { max-width: 460px; margin: 0 auto 30px; }
.su-next3 {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}
.su-next3::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 18px;
    bottom: 18px;
    width: 1.5px;
    background: var(--fx-line-2);
}
.su-next3 li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 650;
    color: var(--fx-muted);
    animation: fx-rise 520ms var(--fx-ease) both;
}
.su-next3 li:nth-child(1) { animation-delay: 420ms; }
.su-next3 li:nth-child(2) { animation-delay: 520ms; }
.su-next3 li:nth-child(3) { animation-delay: 620ms; }
.su-next3-ico {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--fx-surface);
    border: 1px solid var(--fx-line);
    color: var(--fx-ink-2);
}
.su-next3-ico svg { width: 17px; height: 17px; }
.su-done-note { margin: 30px 0 0; }

.su-locked { padding: 8px 0 56px; }
.su-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 18px 20px;
    border-radius: var(--fx-r-lg);
    background: var(--fx-ok-soft);
    border: 1px solid #c3e4d1;
    animation: fx-rise 420ms var(--fx-ease) both;
}
.su-banner-ico {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--fx-ok);
    color: #fff;
}
.su-banner-ico svg { width: 22px; height: 22px; }
.su-banner-title { margin: 0; font-size: 21px; line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
.su-banner-note { margin: 3px 0 0; font-size: 14.5px; font-weight: 600; color: var(--fx-ink-2); text-wrap: pretty; }

/* [c26] */

.su-gate { flex: 1 1 auto; display: grid; place-items: center; padding: 32px 16px 96px; }
.su-gate-card {
    width: 100%;
    max-width: 420px;
    padding: 36px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--fx-r-xl);
    box-shadow: var(--fx-shadow-2);
    animation: fx-rise 520ms var(--fx-ease) both;
}
.su-gate-ico {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--fx-bg);
    color: var(--fx-ink);
}
.su-gate-ico svg { width: 26px; height: 26px; }
.su-gate-card .fx-h2 { margin: 0; }
.su-gate-card .fx-btn { margin-top: 24px; }
.su-gate-sub { margin: 10px 0 0; }

@media (max-width: 560px) {
    .su-prod { padding-left: 16px; }
    .su-prod-ico { display: none; }
    .su-prod-math { white-space: nowrap; }
}

@media (max-width: 560px) {
    /* [c27] */
    .su-seg { flex-direction: column; gap: 10px; padding: 0; background: none; border: 0; border-radius: 0; }
    .su-seg button {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 60px;
        padding: 0 16px;
        border-radius: var(--fx-r);
        border: 1.5px solid var(--fx-line);
        background: var(--fx-surface);
        color: var(--fx-ink);
        font-size: 16px;
        font-weight: 800;
        letter-spacing: -0.015em;
        text-align: left;
        box-shadow: var(--fx-shadow-1);
    }
    .su-seg button::after {
        content: "";
        flex: 0 0 auto;
        width: 24px;
        height: 24px;
        border-radius: 999px;
        border: 1.5px solid var(--fx-line-2);
        box-sizing: border-box;
        background: center / 14px no-repeat;
        transition: background-color 200ms, border-color 200ms;
    }
    .su-seg button.is-on { border-color: var(--fx-ink); box-shadow: 0 0 0 1px var(--fx-ink), var(--fx-shadow-2); }
    .su-seg button.is-on::after {
        border-color: var(--fx-ink);
        background-color: var(--fx-ink);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
    }
}

/* [c28] */
/* [c29] */
.fx-toast { width: max-content; text-align: center; }
@media (max-width: 1023px) {
    .fx-toast { bottom: calc(92px + env(safe-area-inset-bottom)); }
}
