/* [c1] */

/* [c2] */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
/* [c3] */
html, body { overscroll-behavior-y: none; }
/* [c4] */
[hidden] { display: none !important; }

/* [c5] */
:root {
    --st-scroll-thumb:       rgba(0, 0, 0, 0.26);
    --st-scroll-thumb:       color-mix(in srgb, var(--st-accent) 34%, transparent);
    --st-scroll-thumb-hover: rgba(0, 0, 0, 0.44);
    --st-scroll-thumb-hover: color-mix(in srgb, var(--st-accent) 60%, transparent);
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--st-scroll-thumb) transparent;
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
    background-color: var(--st-scroll-thumb);
    border-radius: 999px;
    border: 2px solid transparent;   /* [c6] */
    background-clip: content-box;
    transition: background-color var(--st-dur-fast) var(--st-ease);
}
*::-webkit-scrollbar-thumb:hover { background-color: var(--st-scroll-thumb-hover); }
*::-webkit-scrollbar-corner { background: transparent; }
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--st-bg);
    color: var(--st-text);
    font-family: var(--st-font-ui);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
/* [c7] */
button { font: inherit; cursor: pointer; color: inherit; }
a { color: inherit; }
/* [c8] */
button, a, .st-tool, .st-chip, .st-pill, .st-collection-tile, .st-sample-tile {
    -webkit-tap-highlight-color: transparent;
}
body { touch-action: manipulation; }

/* [c9] */
.st-topbar {
    position: relative; /* [c10] */
    background: var(--st-bg-elevated);
    /* [c11] */
    padding: 18px clamp(16px, 4vw, 40px);
    min-height: 92px;   /* [c12] */
    display: flex;
    align-items: center;
}
/* [c13] */
.st-brand {
    position: absolute;
    left: 50%; top: calc(50% + 8px); /* [c14] */
    transform: translate(-50%, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    max-width: min(44vw, 240px);
}
.st-brand-logo {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.st-lockup {
    font-size: var(--st-lockup-size);
    font-weight: 500;
    letter-spacing: var(--st-lockup-tracking);
    text-transform: uppercase;
    color: var(--st-lockup-color);
    /* [c15] */
    margin-right: calc(var(--st-lockup-tracking) * -1);
    white-space: nowrap;
}

/* [c16] */
.st-landing {
    flex: 1;
    width: 100%;
    max-width: var(--st-maxw);
    margin: 0 auto;
    padding: clamp(24px, 6vh, 64px) clamp(16px, 4vw, 40px) 40px;
}
.st-hero { text-align: center; position: relative; }

/* [c17] */
.st-back {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--st-touch-min);
    height: calc(clamp(1.7rem, 4.4vw, 2.75rem) * 1.2);
    display: flex; align-items: center; justify-content: center;
    background: none; border: none;
    color: var(--st-text-soft);
    border-radius: var(--st-radius-sm);
    transition: color var(--st-dur-fast) var(--st-ease), background var(--st-dur-fast) var(--st-ease);
    z-index: 2;
}
.st-back:hover { color: var(--st-text); background: var(--st-surface-2); }
.st-back svg { width: 18px; height: 18px; }
.st-hero-title {
    font-family: var(--st-font-heading);
    font-weight: var(--st-weight-heading);
    font-size: clamp(1.7rem, 4.4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    animation: st-fade-up var(--st-dur-slow) var(--st-ease) both;
}
.st-hero-sub {
    color: var(--st-text-soft);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin: 0 auto 34px;
    max-width: 480px;
    animation: st-fade-up var(--st-dur-slow) var(--st-ease) 80ms both;
}

/* [c18] */
.st-uploader {
    position: relative;
    width: min(680px, 100%);
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    border: 2px dashed var(--st-border);
    border-radius: var(--st-radius-lg);
    background: var(--st-surface);
    box-shadow: 0 0 0 6px transparent, 0 0 44px var(--st-glow);
    transition: box-shadow var(--st-dur) var(--st-ease),
                border-color var(--st-dur) var(--st-ease),
                transform var(--st-dur-fast) var(--st-ease);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    animation: st-fade-up var(--st-dur-slow) var(--st-ease) 160ms both;
    outline: none;
}
@media (hover: hover) {
    .st-uploader:hover:not(.has-photo),
    .st-uploader:focus-visible:not(.has-photo) {
        border-color: var(--st-text-faint);
        box-shadow: 0 0 0 6px var(--st-accent-soft), 0 0 64px var(--st-glow-strong);
    }
}
.st-uploader.is-dragover:not(.has-photo) {
    border-color: var(--st-accent);
    box-shadow: 0 0 0 6px var(--st-accent-soft), 0 0 72px var(--st-glow-strong);
}
.st-uploader:active:not(.has-photo) { transform: scale(0.995); }

.st-uploader-idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--st-text-soft);
    padding: 24px;
    pointer-events: none;
}
.st-uploader-icon { width: 44px; height: 44px; color: var(--st-text-faint); }
.st-uploader-copy { font-size: 1rem; font-weight: 500; }
.st-uploader-error {
    margin: 14px auto 0;
    max-width: 420px;
    font-size: 0.9rem;
    color: var(--st-danger);
    animation: st-fade-up var(--st-dur) var(--st-ease) both;
}

/* [c19] */
.st-uploader.has-photo { border-style: solid; cursor: default; animation: none; }
.st-uploader.has-photo { animation: st-glow-pulse 2.8s var(--st-ease) infinite; }
.st-uploader-preview { position: absolute; inset: 0; }
.st-uploader-preview img { width: 100%; height: 100%; object-fit: cover; }
.st-uploader-clear {
    position: absolute;
    top: 12px; right: 12px;
    width: 40px; height: 40px;
    min-width: var(--st-touch-min); min-height: var(--st-touch-min);
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--st-dur-fast) var(--st-ease),
                transform var(--st-dur-fast) var(--st-ease);
}
.st-uploader-clear:hover { background: rgba(0, 0, 0, 0.75); }
.st-uploader-clear:active { transform: scale(0.94); }

/* [c20] */
.st-footer {
    padding: 26px 16px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.st-powered {
    font-size: 0.78rem;
    color: var(--st-text-faint);
}
.st-powered a { color: inherit; text-decoration: none; }
.st-powered a:hover { text-decoration: underline; }

/* [c21] */
.st-devbar {
    position: fixed;
    bottom: 10px; left: 10px;
    background: rgba(20, 20, 20, 0.82);
    color: #eee;
    font: 500 11px/1.6 ui-monospace, Consolas, monospace;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 99;
    pointer-events: none;
}

/* [c22] */
@keyframes st-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes st-glow-pulse {
    0%, 100% { box-shadow: 0 0 0 6px transparent, 0 0 34px var(--st-glow); }
    50%      { box-shadow: 0 0 0 6px var(--st-accent-soft), 0 0 74px var(--st-glow-strong); }
}
@keyframes st-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* [c23] */
.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--st-touch-min);
    padding: 12px 26px;
    border: none;
    border-radius: var(--st-radius-md);
    font-family: var(--st-font-ui);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--st-dur-fast) var(--st-ease), box-shadow var(--st-dur-fast) var(--st-ease),
                opacity var(--st-dur-fast) var(--st-ease);
}
.st-btn:active { transform: scale(0.98); }
.st-btn[disabled] { opacity: 0.45; pointer-events: none; }
.st-btn-primary { background: var(--st-accent); color: var(--st-accent-contrast); box-shadow: var(--st-shadow-sm); }
.st-btn-primary:hover { box-shadow: var(--st-shadow-md); }
.st-btn-ghost2 {
    background: var(--st-surface);
    color: var(--st-text);
    border: 1.5px solid var(--st-border);
}
.st-btn-ghost2:hover { border-color: var(--st-text-faint); }
.st-btn-ghost {
    background: none;
    border: none;
    color: var(--st-text-soft);
    font-size: 0.9rem;
    padding: 10px 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.st-btn-login {
    background: none;
    border: 1.5px solid var(--st-border);
    color: var(--st-text);
    padding: 5px 10px;
    min-height: 0;
    font-size: 0.9rem;
    border-radius: 0.5em;
    white-space: nowrap; /* [c24] */
    flex-shrink: 0;
}
/* [c25] */
.st-btn-google,
.st-btn-facebook {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.st-btn-google {
    background: var(--st-surface);
    color: var(--st-text);
    border: 1.5px solid var(--st-border);
}
.st-btn-facebook {
    background: #1877f2;
    color: #ffffff;
    border: 1.5px solid #1877f2;
}
.st-oauth-ico {
    position: absolute;
    left: 16px;
    width: 20px; height: 20px;
}
.st-cta { margin-top: 26px; animation: st-fade-up var(--st-dur) var(--st-ease) both; }

/* [c26] */
.st-shine {
    position: relative;
    overflow: hidden;
    /* [c27] */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}
.st-shine::after {
    content: "";
    position: absolute;
    top: -60%; bottom: -60%;
    left: 0;
    /* [c28] */
    width: 58%;
    background: linear-gradient(103deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.20) 32%,
        rgba(255, 255, 255, 0.46) 50%,
        rgba(255, 255, 255, 0.20) 68%,
        rgba(255, 255, 255, 0) 100%);
    filter: blur(7px);
    transform: translateX(-180%) rotate(8deg);
    animation: st-shine-sweep 4.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    pointer-events: none;
    z-index: 1;
}
/* [c29] */
.st-shine > * { position: relative; z-index: 2; }
@keyframes st-shine-sweep {
    0%, 26%  { transform: translateX(-180%) rotate(8deg); }
    100%     { transform: translateX(320%) rotate(8deg); }
}
/* [c30] */
@media (hover: hover) {
    .st-shine:hover { box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9), 0 10px 30px rgba(0, 0, 0, 0.2); }
}
.st-shine:disabled { box-shadow: none; }
.st-shine:disabled::after { display: none; }

/* [c31] */
.st-btn-ico { width: 18px; height: 18px; margin-right: 9px; vertical-align: -3px; display: inline-block; }
.st-btn-wide { width: 100%; }

/* [c32] */
.st-dialog-head.st-dialog-head-center { justify-content: center; text-align: center; }
.st-dialog-head-center .st-icon-btn[data-close] { position: absolute; top: 10px; right: 12px; }
.st-gate-title { font-size: clamp(1.6rem, 5vw, 1.95rem); line-height: 1.2; }

/* [c33] */
.st-modal-locked {
    background: rgba(255, 255, 255, 0.97); /* [c34] */
    background: color-mix(in srgb, var(--st-bg) 97%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* [c35] */
.st-consent { margin-bottom: 6px; }
#gate-next { margin-top: 16px; }

/* [c36] */
.st-transformwait {
    position: fixed; inset: 0;
    z-index: 300;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.93); /* [c37] */
    background: color-mix(in srgb, var(--st-bg) 93%, transparent);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--st-dur) var(--st-ease);
}
.st-transformwait.show { opacity: 1; pointer-events: auto; }
.st-transformwait-inner { text-align: center; }
.st-transformwait-inner p {
    margin: 18px 0 0;
    font-size: 1.08rem; font-weight: 600;
    color: var(--st-text);
    letter-spacing: 0.01em;
}
/* [c38] */
.st-ring {
    width: 64px; height: 64px;
    display: block;
    margin: 0 auto;
    transform: rotate(-90deg); /* [c39] */
}
.st-ring circle { fill: none; stroke-width: 5; }
.st-ring-track { stroke: var(--st-border); }
.st-ring-fill {
    stroke: var(--st-accent);
    stroke-linecap: round;
    stroke-dasharray: 194.8;   /* [c40] */
    stroke-dashoffset: 194.8;
}
.st-transformwait.show .st-ring-fill { animation: st-ring-fill 3s linear forwards; }
@keyframes st-ring-fill { to { stroke-dashoffset: 0; } }

.st-input {
    width: 100%;
    min-height: var(--st-touch-min);
    padding: 12px 14px;
    margin: 6px 0;
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-sm);
    background: var(--st-surface);
    color: var(--st-text);
    font: inherit;
    transition: border-color var(--st-dur-fast) var(--st-ease);
}
.st-input:focus { outline: none; border-color: var(--st-accent); }
.st-label { display: block; margin-top: 10px; font-size: 0.86rem; font-weight: 600; color: var(--st-text-soft); }
.st-field-error { color: var(--st-danger); font-size: 0.88rem; margin: 8px 0 0; }
.st-fineprint { font-size: 0.72rem; color: var(--st-text-faint); margin: 14px 0 0; line-height: 1.5; }
.st-fineprint a { color: inherit; }
.st-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.st-icon-btn {
    background: none;
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    font-size: 1.15rem;
    color: var(--st-text-soft);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--st-dur-fast) var(--st-ease);
}
.st-icon-btn:hover { background: var(--st-surface-2); }

.st-chip {
    background: var(--st-surface);
    border: 1.5px solid var(--st-border);
    border-radius: 999px;
    padding: 8px 16px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    min-height: var(--st-touch-min);
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-chip.active { background: var(--st-accent); color: var(--st-accent-contrast); border-color: var(--st-accent); }

/* [c41] */
.st-topbar { justify-content: space-between; gap: 12px; }
/* [c42] */
.st-topbar-side { display: flex; align-items: center; }
.st-topbar-right { justify-content: flex-end; }
.st-balance { flex-direction: column; align-items: flex-start; gap: 0; }
.st-balance-num { font-weight: 700; font-size: 1.05rem; }
.st-balance-label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--st-text-faint); }

/* [c43] */
.st-step { transition: opacity var(--st-dur) var(--st-ease), transform var(--st-dur) var(--st-ease); }
.st-step-leave { opacity: 0; transform: translateY(-10px); }
.st-step-enter { opacity: 0; transform: translateY(14px); }

/* [c44] */
.grecaptcha-badge { visibility: hidden !important; }

/* [c45] */
.st-hero .st-btn-ghost { margin-top: 20px; }

.st-btn-center { display: block; margin-left: auto; margin-right: auto; }

.st-or-divider {
    display: flex; align-items: center; gap: 14px;
    margin: 26px auto;
    max-width: 320px;
    color: var(--st-text-faint);
    font-size: 0.85rem;
}
.st-or-divider::before, .st-or-divider::after {
    content: ""; flex: 1; height: 1px; background: var(--st-border);
}

/* [c46] */
.st-samples {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
    margin-top: 10px;
}
.st-sample-tile {
    width: min(240px, 42vw);
    background: var(--st-surface);
    border: 2px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 10px 10px 12px;
    cursor: pointer;
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-sample-tile img { aspect-ratio: 1; object-fit: cover; border-radius: var(--st-radius-md); width: 100%; }
.st-sample-tile span { display: block; margin-top: 10px; font-weight: 600; font-size: 0.95rem; }
.st-sample-tile.selected {
    border-color: var(--st-accent);
    box-shadow: 0 0 0 4px var(--st-accent-soft), 0 0 40px var(--st-glow-strong);
}

/* [c47] */
.st-collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    max-width: 820px;
    margin: 8px auto 0;
}
.st-collection-tile {
    background: var(--st-surface);
    border: 2px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 8px 8px 10px;
    cursor: pointer;
    transition: transform var(--st-dur-fast) var(--st-ease),
                border-color var(--st-dur-fast) var(--st-ease),
                box-shadow var(--st-dur) var(--st-ease);
}
/* [c48] */
@media (hover: hover) {
    .st-collection-tile:hover {
        transform: translateY(-3px);
        border-color: var(--st-accent);
        box-shadow: 0 10px 30px var(--st-glow-strong), 0 0 0 4px var(--st-accent-soft);
    }
}
.st-collection-tile:active { transform: translateY(-1px) scale(0.995); }
.st-collection-tile img, .st-collection-blank {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1; width: 100%;
    object-fit: cover;
    border-radius: var(--st-radius-md);
    background: var(--st-surface-2);
    color: var(--st-text-faint);
    font-size: 2rem; font-weight: 300;
}
.st-collection-name { display: block; margin-top: 8px; font-size: 0.88rem; font-weight: 600; }
.st-collection-tile.selected {
    border-color: var(--st-accent);
    box-shadow: 0 0 0 4px var(--st-accent-soft);
}

/* [c49] */

/* [c50] */
.st-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    justify-content: center;
    gap: 22px;
    margin: 26px auto 0;
    max-width: 640px;
}
.st-choice-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px;
    background: var(--st-surface);
    border: 2px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 22px 20px 24px;
    cursor: pointer;
    text-align: center;
    transition: transform var(--st-dur-fast) var(--st-ease),
                border-color var(--st-dur-fast) var(--st-ease),
                box-shadow var(--st-dur) var(--st-ease);
}
@media (hover: hover) {
    .st-choice-card:hover {
        transform: translateY(-3px);
        border-color: var(--st-accent);
        box-shadow: 0 12px 34px var(--st-glow-strong), 0 0 0 4px var(--st-accent-soft);
    }
}
.st-choice-card:active { transform: translateY(-1px) scale(0.99); }
.st-choice-card strong { font-size: 1.05rem; margin-top: 10px; }
.st-choice-sub { font-size: 0.86rem; color: var(--st-text-soft); line-height: 1.4; }
.st-choice-visual {
    display: flex; align-items: center; justify-content: center;
    width: 100%; aspect-ratio: 16/10;
    border-radius: var(--st-radius-md);
    background: var(--st-surface-2);
    color: var(--st-text-faint);
}
.st-choice-blank span { font-size: 3rem; font-weight: 300; line-height: 1; }
/* [c51] */
.st-choice-art {
    background: linear-gradient(135deg, var(--st-accent-soft), var(--st-surface-2) 70%);
    color: var(--st-accent);
}
.st-choice-art svg { width: 64px; height: 64px; }

/* [c52] */
.st-insp-cats {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px;
    margin: 18px auto 4px;
}
.st-insp-cats[hidden] { display: none; }
.st-cat-chip {
    padding: 8px 18px;
    border: 1.5px solid var(--st-border);
    border-radius: 999px;
    background: var(--st-surface);
    font-weight: 600; font-size: 0.92rem;
    color: var(--st-text-soft);
    cursor: pointer;
    transition: all var(--st-dur-fast) var(--st-ease);
}
@media (hover: hover) {
    .st-cat-chip:hover { border-color: var(--st-accent); color: var(--st-text); }
}
.st-cat-chip.active {
    background: var(--st-accent);
    border-color: var(--st-accent);
    color: var(--st-accent-contrast);
}
#step-collections .st-collections { margin-top: 18px; }

/* [c53] */
.st-collection-upload .st-collection-upicon {
    color: var(--st-accent);
    background: linear-gradient(135deg, var(--st-accent-soft), var(--st-surface-2) 75%);
}
.st-collection-upload .st-collection-upicon svg { width: 44px; height: 44px; }

/* [c54] */
.st-dream-stack {
    position: relative;
    width: min(560px, 86vw);
    margin: 30px auto 6px;
    /* [c55] */
    display: flex; justify-content: center;
}
.st-dream-card {
    width: 62%;
    margin: 0;
    background: var(--st-surface);
    border-radius: 18px;
    padding: 10px 10px 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--st-border);
}
.st-dream-card img {
    display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover;
    border-radius: 12px; background: var(--st-surface-2);
}
.st-dream-card figcaption {
    margin-top: 8px; font-size: 0.82rem; font-weight: 600; text-align: center;
    color: var(--st-text-soft);
}
.st-dream-before { transform: rotate(-4deg) translateX(-8%); z-index: 1; }
.st-dream-inspo  { transform: rotate(3.5deg) translateX(8%) translateY(6%); z-index: 2; }
#step-dream .st-cta { margin-top: 34px; }
.st-dream-takeaway {
    display: block;
    margin: 22px auto 0;
    max-width: 520px;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--st-text-soft);
    background: none; border: none; cursor: pointer;
    line-height: 1.5;
    transition: color var(--st-dur-fast) var(--st-ease);
}
@media (hover: hover) { .st-dream-takeaway:hover { color: var(--st-text); } }
.st-dream-takeaway-empty { text-decoration: underline dotted; text-underline-offset: 3px; }

/* [c56] */
.st-inspbar {
    display: flex; align-items: center;
    gap: 10px;
    width: 100%;
    background: var(--st-accent-soft);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-md);
    padding: 8px 10px;
    margin-bottom: 14px;
    cursor: pointer;
    text-align: left;
    transition: border-color var(--st-dur-fast) var(--st-ease),
                box-shadow var(--st-dur-fast) var(--st-ease);
}
@media (hover: hover) {
    .st-inspbar:hover { border-color: var(--st-accent); box-shadow: 0 0 0 3px var(--st-accent-soft); }
}
.st-inspbar-swap { flex: 0 0 auto; pointer-events: none; }
.st-inspbar-thumb {
    width: 42px; height: 42px; object-fit: cover;
    border-radius: 8px; background: var(--st-surface-2);
    flex: 0 0 auto;
}
.st-inspbar-meta { display: flex; flex-direction: column; min-width: 0; }
.st-inspbar-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--st-text-faint);
}
.st-inspbar-meta strong {
    font-size: 0.9rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* [c57] */
.st-insp-uploader { min-height: 200px; }
.st-insp-uploader .st-uploader-preview img { max-height: 300px; }
.st-insp-qrpanel { text-align: center; }
.st-insp-qr {
    width: 168px; height: 168px; margin: 4px auto 0;
    background: #fff; border-radius: var(--st-radius-md);
    padding: 8px;
    border: 1.5px solid var(--st-border);
}
.st-insp-qr svg { width: 100%; height: 100%; display: block; }
.st-insp-qrhint { margin: 8px 0 4px; font-size: 0.85rem; color: var(--st-text-soft); }
#insp-takeaway-wrap { margin-top: 14px; }
#insp-takeaway-wrap .st-btn { margin-top: 12px; }
.st-label-soft { font-weight: 400; color: var(--st-text-faint); }

/* [c58] */
.st-collections-modal { max-width: none; margin-top: 12px; }
#insp-browse-modal .st-insp-cats { margin-top: 4px; }

/* [c59] */
.st-pub-badge {
    font-size: 0.72rem; font-weight: 700;
    color: var(--st-accent);
    border: 1px solid var(--st-accent);
    border-radius: 999px;
    padding: 1px 8px;
    vertical-align: 1px;
}
.st-ce-photo { display: flex; align-items: center; gap: 12px; margin: 6px 0 4px; }
.st-ce-photothumb { width: 84px; height: 84px; object-fit: cover; border-radius: var(--st-radius-md); }

/* [c60] */
.st-alert-toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 1200;
    max-width: min(520px, 90vw);
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* [c61] */
.st-studio {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(300px, 35fr);
    gap: 20px;
    align-items: stretch;
    min-height: min(72vh, 760px);
}
.st-studio-canvas { position: relative; display: flex; flex-direction: column; min-width: 0; }
.st-studio-viewport {
    position: relative;
    flex: 1;
    min-height: 380px;
    background: var(--st-surface-2);
    border-radius: var(--st-radius-lg);
    overflow: hidden;
    cursor: crosshair;
}

/* [c62] */
@media (min-width: 861px) {
    .st-studio {
        height: var(--st-avail, auto);
        min-height: 0;
    }
    .st-studio-canvas { min-height: 0; }
    .st-studio-viewport { min-height: 240px; }
    .st-plan { overflow: hidden; min-height: 0; }
    .st-plan-scroll {
        display: flex;
        flex-direction: column;
        gap: 14px;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        margin: 0 -6px 0 0;      /* [c63] */
        padding-right: 6px;
    }
    .st-plan .st-transform { flex: 0 0 auto; }
}
/* [c64] */
.st-plan-scroll { display: contents; }
@media (min-width: 861px) {
    .st-plan-scroll { display: flex; }
}
.st-draw-stage { position: absolute; top: 0; left: 0; }
.st-draw-stage img { display: block; max-width: none; user-select: none; -webkit-user-drag: none; pointer-events: none; }
/* [c65] */
.st-draw-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.8; }

/* [c66] */
.st-draw-overlay {
    position: absolute; inset: 0; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 24px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.25s var(--st-ease);
    pointer-events: none;
}
.st-draw-overlay.show { opacity: 1; }
.st-draw-overlay span {
    color: #fff;
    font-size: 1.08rem; font-weight: 600; letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

/* [c67] */
.st-brush-ring {
    position: absolute; z-index: 3;
    display: none;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.st-toolrail {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding: 10px 4px 0;
}
.st-tool {
    width: 44px; height: 44px;
    min-width: var(--st-touch-min);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--st-border);
    background: var(--st-surface);
    border-radius: var(--st-radius-sm);
    font-size: 1.05rem;
    color: var(--st-text-soft);
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-tool svg { width: 21px; height: 21px; }
.st-tool.active { background: var(--st-accent); color: var(--st-accent-contrast); border-color: var(--st-accent); }
.st-tool:disabled { opacity: 0.32; cursor: default; }
/* [c68] */
.st-toolrail .st-size { margin-left: auto; }
.st-icon-btn svg { width: 16px; height: 16px; }
/* [c69] */
.st-canvasbox { position: relative; }
.st-histcorner {
    position: absolute; top: 10px; left: 10px;
    display: flex; gap: 6px;
    z-index: 4;
}
.st-histbtn {
    width: 38px; height: 38px;
    min-width: 0;
    box-shadow: var(--st-shadow-md);
}
.st-tool-sep { width: 1px; height: 28px; background: var(--st-border); }
.st-colors { display: flex; gap: 6px; }
.st-color-swatch {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--st-border);
    cursor: pointer;
    transition: transform var(--st-dur-fast) var(--st-ease);
}
.st-color-swatch.active { border-color: var(--st-text); transform: scale(1.18); }
.st-size { width: 110px; accent-color: var(--st-accent); }

/* [c70] */
.st-brushbtn { color: var(--brush-c, #e53935); }
.st-brushbtn.active {
    background: var(--brush-c, #e53935);
    border-color: var(--brush-c, #e53935);
    color: #fff;
}
.st-size, .st-colors { transition: opacity var(--st-dur-fast) var(--st-ease), filter var(--st-dur-fast) var(--st-ease); }

/* [c71] */
/* [c72] */
.st-drawbar { display: none; gap: 8px; margin-top: 10px; }
.st-drawbar-btn {
    flex: 1;
    min-height: var(--st-touch-min);
    padding: 11px 14px;
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-sm);
    background: var(--st-surface);
    color: var(--st-text);
    font-size: 0.98rem; font-weight: 600; letter-spacing: 0.01em;
    transition: background var(--st-dur-fast) var(--st-ease),
                box-shadow var(--st-dur-fast) var(--st-ease);
}
.st-drawbar-btn:active { transform: scale(0.99); }
.st-drawpill {
    border-color: var(--st-text);
    background: var(--st-text);
    color: var(--st-bg);
    box-shadow: var(--st-shadow-sm);
}
.st-drawpill-on { background: #1f9d4d; border-color: #1f9d4d; color: #fff; box-shadow: var(--st-shadow-md); }

/* [c73] */
.st-sheet-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 49; /* [c74] */
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--st-dur) var(--st-ease);
}
.st-sheet-backdrop.show { opacity: 1; pointer-events: auto; }

/* [c75] */
.st-picker-colors { display: flex; gap: 8px; align-items: center; }
.st-colorsw {
    width: 30px; height: 30px;
    border-radius: 8px;
    border: 2px solid var(--st-border);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: transform var(--st-dur-fast) var(--st-ease), border-color var(--st-dur-fast) var(--st-ease), box-shadow var(--st-dur-fast) var(--st-ease);
}
.st-colorsw.active {
    border-color: var(--st-text);
    transform: scale(1.12);
    box-shadow: 0 0 0 2px var(--st-accent-soft);
}
.st-colorsw-all {
    background: var(--st-surface);
    color: var(--st-text-soft);
    display: inline-flex; align-items: center; justify-content: center;
}
.st-colorsw-all svg { width: 17px; height: 17px; }
.st-studio-alert {
    position: absolute; left: 50%; top: 12px; transform: translateX(-50%);
    background: var(--st-text); color: var(--st-bg);
    padding: 10px 18px; border-radius: 999px;
    font-size: 0.9rem; box-shadow: var(--st-shadow-md);
    z-index: 5; white-space: nowrap;
}

/* [c76] */
.st-plan {
    display: flex; flex-direction: column; gap: 14px;
    background: var(--st-bg-elevated);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 20px;
}
.st-plan-heading {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--st-text-soft);
    margin: 6px 0 8px;
}
.st-plan-addbtn { width: 100%; margin-top: 18px; }
.st-sheet-close { display: none; }

/* [c77] */
.st-product-row {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: var(--st-radius-sm);
}
.st-product-row:last-child { margin-bottom: 0; }
.st-product-brush { width: 40px; height: 40px; flex-shrink: 0; }
/* [c78] */
.st-editremove { color: #c62828; font-size: 0.85rem; margin-top: 2px; }
.st-product-thumb {
    width: 52px; height: 52px;
    border-radius: var(--st-radius-sm);
    object-fit: cover;
    background: var(--st-surface-2);
    flex-shrink: 0;
}
.st-product-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; }
/* [c79] */
.st-product-meta strong,
.st-product-meta span,
.st-product-meta em { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.st-product-meta strong { font-size: 0.92rem; }
.st-product-meta span { font-size: 0.8rem; color: var(--st-text-soft); }
.st-product-meta em { font-size: 0.78rem; color: var(--st-text-soft); opacity: 0.85; font-style: normal; }
.st-product-actions { display: flex; gap: 2px; }

.st-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.st-pill {
    flex: 1;
    min-height: var(--st-touch-min);
    padding: 9px 6px;
    border: 1.5px solid var(--st-border);
    background: var(--st-surface);
    border-radius: 999px;
    font: inherit; font-size: 0.86rem; font-weight: 500;
    transition: all var(--st-dur-fast) var(--st-ease);
    white-space: nowrap;
}
.st-pill.active { background: var(--st-accent); color: var(--st-accent-contrast); border-color: var(--st-accent); }

.st-transform { width: 100%; margin-top: auto; padding: 16px; font-size: 1.08rem; }
.st-transform.busy { pointer-events: none; opacity: 0.6; }
.st-mobilebar { display: none; }

/* [c80] */
body.st-modal-open { overflow: hidden; }
.st-modal {
    position: fixed; inset: 0;
    background: rgba(15, 14, 12, 0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 18px;
    z-index: 60;
    animation: st-modal-in var(--st-dur-fast) var(--st-ease) both;
}
@keyframes st-modal-in { from { opacity: 0; } to { opacity: 1; } }
.st-dialog {
    position: relative; /* [c81] */
    width: min(440px, 100%);
    max-height: min(86vh, 720px);
    background: var(--st-bg-elevated);
    border-radius: var(--st-radius-xl);
    box-shadow: var(--st-shadow-lg);
    display: flex; flex-direction: column;
    animation: st-fade-up var(--st-dur) var(--st-ease) both;
}
.st-dialog-tall { width: min(720px, 100%); height: min(86vh, 780px); }
.st-dialog-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
    padding: 22px 22px 6px;
}
.st-dialog-title { font-family: var(--st-font-heading); font-size: 1.3rem; margin: 0; }
.st-dialog-sub { margin: 2px 0 0; font-size: 0.9rem; color: var(--st-text-soft); }
.st-dialog-body { padding: 10px 22px 24px; overflow-y: auto; }

.st-usertype { display: flex; gap: 10px; margin-bottom: 10px; }
.st-usertype-opt { flex: 1; }
.st-usertype-opt input { position: absolute; opacity: 0; }
.st-usertype-opt span {
    display: flex; align-items: center; justify-content: center;
    min-height: var(--st-touch-min);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-sm);
    font-weight: 600; font-size: 0.92rem;
    cursor: pointer;
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-usertype-opt input:checked + span {
    background: var(--st-accent); color: var(--st-accent-contrast); border-color: var(--st-accent);
}
.st-consent { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0 4px; font-size: 0.82rem; color: var(--st-text-soft); }
.st-consent input { margin-top: 3px; }
.st-checkmail { text-align: center; padding: 18px 6px 8px; }
.st-checkmail-icon { font-size: 2.4rem; }
.st-checkmail h3 { margin: 10px 0 6px; font-family: var(--st-font-heading); }
.st-checkmail p { color: var(--st-text-soft); font-size: 0.92rem; margin: 0; }

/* [c82] */
.st-picker-grid { display: grid; gap: 12px; }
.st-picker-cats { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.st-picker-cat {
    min-height: 86px;
    background: var(--st-surface);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-md);
    font: inherit; font-weight: 600;
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-picker-cat:hover { border-color: var(--st-accent); }
.st-picker-products, .st-picker-swatches { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
.st-picker-tile {
    background: var(--st-surface);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-md);
    padding: 8px;
    cursor: pointer;
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-picker-tile:hover { border-color: var(--st-accent); }
.st-picker-tile img, .st-picker-noimg {
    display: block; width: 100%; aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--st-radius-sm);
    background: var(--st-surface-2);
}
.st-picker-tile-name { display: block; margin-top: 7px; font-size: 0.82rem; font-weight: 600; }
.st-picker-filters { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.st-picker-colors { display: flex; gap: 8px; flex-wrap: wrap; }
.st-picker-empty { color: var(--st-text-soft); text-align: center; padding: 24px 0; }
.st-picker-picked { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.st-picker-picked img { width: 62px; height: 62px; border-radius: var(--st-radius-sm); object-fit: cover; }
.st-picker-picked div { display: flex; flex-direction: column; }
.st-picker-picked span { font-size: 0.85rem; color: var(--st-text-soft); }
.st-picker-context .st-btn { width: 100%; margin-top: 12px; }

/* [c83] */
/* [c84] */
body.st-render-lock { overflow: hidden; }
body.st-render-lock .st-topbar,
body.st-render-lock .st-footer,
body.st-render-lock .st-devbar { display: none; }
/* [c269] */
.st-wait {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--st-bg);
    text-align: center;
    padding: clamp(12px, 2vmin, 44px) clamp(14px, 2.2vw, 52px);
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}
/* [c270] */
.st-wait-inner {
    width: 100%;
    max-width: 560px;
    max-height: 100%;
    min-height: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(10px, 1.5vmin, 26px);
}
/* [c256] */
/* [c271] */
/* [c280] */
.st-wait-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}
.st-wait-head .st-wait-title {
    margin: 0;
    font-size: clamp(1.02rem, 0.6rem + 1.9vmin, 2.4rem);
    line-height: 1.15;
}
/* [c257] */
.st-wait .st-wait-sub {
    margin: 0;
    flex: 0 0 auto;
    font-size: clamp(0.78rem, 0.6rem + 0.42vmin, 1.15rem);
    color: var(--st-text-faint);
}

/* [c258] */
/* [c272] */
.st-wait-book {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    margin: 0;
}
.st-wait-book[hidden] { display: none; }
.st-wait-book:has(.stfb-tooSmall) { flex: 0 0 0; }
/* [c273] */
/* [c281] */
.st-wait.st-has-book .st-wait-inner {
    max-width: min(760px, 94vw);
    height: 100%;
}
/* [c274] */
.st-wait.st-has-book .st-wait-sub { display: none; }

/* [c85] */
/* [c282] */
.st-progress {
    height: 5px;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 999px;
    background: var(--st-accent-soft, var(--st-surface-2));
    overflow: hidden;
    margin: 0 auto;
    /* [c275] */
    width: min(78%, clamp(160px, 22vmin, 280px));
}
.st-progress-fill {
    position: relative;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: var(--st-accent);
    transition: width 220ms linear;
}
/* [c283] */
.st-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%);
    animation: st-progress-sheen 1.9s var(--st-ease) infinite;
}
@keyframes st-progress-sheen {
    from { transform: translateX(-100%); }
    to   { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
    .st-progress-fill::after { animation: none; opacity: 0; }
}
.st-progress-pct {
    margin: 10px 0 26px;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    color: var(--st-text-soft);
}

/* [c86] */
/* [c276] */
.st-factcard {
    flex: 0 0 auto;
    min-height: 0;
    position: relative;
    z-index: 2;
    background: var(--st-bg);
    border-top: 1px solid var(--st-border);
    padding-top: clamp(10px, 1.4vmin, 26px);
}
.st-factcard-eyebrow {
    margin: 0 0 clamp(4px, 0.6vmin, 12px);
    font-size: clamp(0.62rem, 0.52rem + 0.3vmin, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--st-text-faint);
}
.st-factcard .st-wait-fact {
    font-size: clamp(0.82rem, 0.64rem + 0.62vmin, 1.75rem);
    line-height: 1.5;
    color: var(--st-text-soft);
    /* [c87] */
    min-height: 2.2em;
    max-width: 74ch;
    margin: 0 auto;
    overflow: hidden;
}
.st-wait-spinner {
    width: 46px; height: 46px;
    margin: 0 auto 26px;
    border: 3px solid var(--st-border);
    border-top-color: var(--st-accent);
    border-radius: 50%;
    animation: st-spin 0.9s linear infinite;
}
.st-wait-title { font-family: var(--st-font-heading); font-size: clamp(1.4rem, 3.4vw, 2rem); margin: 0 0 8px; }
.st-wait-sub { color: var(--st-text-soft); margin: 0 0 30px; }
.st-wait-fact { color: var(--st-text-faint); font-size: 0.92rem; transition: opacity 300ms var(--st-ease); min-height: 1.4em; }

.st-result { text-align: center; }

/* [c88] */
/* [c89] */
.st-landing-result { padding-top: 12px; }
.st-result-top { margin: 0 0 12px; text-align: left; }
.st-result-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.st-back-ico { width: 12px; height: 12px; }
.st-result-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: start; }
.st-result-stage { min-width: 0; }

/* [c90] */
.st-result-frame {
    position: relative;
    max-width: 900px; margin: 0 auto 18px;
    border-radius: var(--st-radius-lg);
    overflow: hidden;
    box-shadow: var(--st-shadow-lg);
    animation: st-fade-up var(--st-dur-slow) var(--st-ease) both;
}
.st-result-frame img { width: 100%; cursor: zoom-in; }

/* [c91] */
.st-result-frame.st-ar {
    --ar: 1.3333;
    --st-img-max: min(76vh, 720px);
    width: min(100%, calc(var(--st-img-max) * var(--ar)));
    max-width: none;
    aspect-ratio: var(--ar);
    margin: 0 auto;
    background: var(--st-surface-2);
}
.st-result-frame.st-ar img {
    width: 100%; height: 100%;
    /* [c92] */
    object-fit: cover;
    object-position: center;
    display: block;
}
.st-expand {
    position: absolute; top: 10px; right: 10px;
    width: 40px; height: 40px;
    border: none; border-radius: var(--st-radius-sm);
    background: rgba(12, 11, 10, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--st-dur-fast) var(--st-ease);
    z-index: 2;
}
.st-expand:hover { background: rgba(12, 11, 10, 0.82); }
.st-expand svg { width: 17px; height: 17px; }
.st-disclaimer {
    max-width: 640px;
    margin: 10px auto 0;
    color: var(--st-text-faint);
    font-size: 0.7rem;
    line-height: 1.55;
    text-align: center;
}
.st-result-side { text-align: left; max-width: 640px; margin: 0 auto; width: 100%; }

/* [c93] */
.st-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* [c94] */
/* [c260] */
.st-viewer-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
}
.st-viewer-actions .st-btn { width: 100%; margin: 0; padding-left: 8px; padding-right: 8px; white-space: nowrap; }

/* [c261] */
.st-nextstep .st-or-divider { margin: 16px auto; max-width: none; font-size: 0.78rem; }
.st-side-heading { font-family: var(--st-font-heading); font-size: 1.02rem; margin: 0 0 10px; }
.st-products-empty { color: var(--st-text-soft); font-size: 0.9rem; }
.st-result-products { max-width: 460px; margin: 18px auto 0; text-align: left; }
.st-result-side .st-result-products { max-width: none; margin: 0; }
.st-result-note { color: var(--st-text-faint); font-size: 0.82rem; margin-top: 18px; }

/* [c95] */
@media (min-width: 1020px) {
    .st-result-grid { grid-template-columns: minmax(0, 1fr) 350px; gap: 30px; }
    .st-result-side { margin: 0; max-width: none; }
    .st-disclaimer { margin-left: auto; margin-right: auto; }
}

.st-history { max-width: var(--st-maxw); margin: 40px auto 0; padding-top: 10px; border-top: 1px solid var(--st-border); }
/* [c97] */
.st-history-title { font-family: var(--st-font-heading); font-size: 1.2rem; margin: 0 0 4px; }
.st-history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.st-history-card {
    display: block;
    aspect-ratio: 4/3;
    border-radius: var(--st-radius-md);
    overflow: hidden;
    background: var(--st-surface-2);
    transition: transform var(--st-dur-fast) var(--st-ease), box-shadow var(--st-dur-fast) var(--st-ease);
}
.st-history-card:hover { transform: translateY(-2px); box-shadow: var(--st-shadow-md); }
.st-history-card img { width: 100%; height: 100%; object-fit: cover; }
.st-history-pending {
    display: flex; align-items: center; justify-content: center;
    height: 100%;
    color: var(--st-text-faint); font-size: 0.85rem;
}
.st-history-empty { color: var(--st-text-soft); }

.st-authcard {
    max-width: 420px; margin: 6vh auto 0;
    background: var(--st-bg-elevated);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-xl);
    padding: 34px 30px;
    text-align: center;
    animation: st-fade-up var(--st-dur-slow) var(--st-ease) both;
}
.st-authcard-title { font-family: var(--st-font-heading); font-size: 1.45rem; margin: 0 0 10px; }
.st-authcard-text { color: var(--st-text-soft); font-size: 0.95rem; margin: 0 0 22px; }
.st-authcard-form { text-align: left; margin-bottom: 8px; }
.st-authcard .st-btn { width: 100%; margin-top: 8px; }

/* [c98] */

/* [c99] */
.st-balance {
    background: none;
    border: none;
    cursor: pointer;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    border-radius: var(--st-radius-sm);
    padding: 6px 8px;
    transition: background var(--st-dur-fast) var(--st-ease);
}
.st-balance:hover { background: var(--st-surface-2); }
.st-balance-cube { width: 30px; height: 30px; }
.st-balance-num { font-weight: 700; font-size: 1.05rem; }
.st-menu-btn { font-size: 1.3rem; }

/* [c100] */
.st-menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(15, 14, 12, 0.4);
    z-index: 70;
}
.st-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 86vw);
    background: var(--st-bg-elevated);
    box-shadow: var(--st-shadow-lg);
    z-index: 71;
    padding: 60px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--st-dur) var(--st-ease);
}
.st-menu.open { transform: translateX(0); }
.st-menu-close { position: absolute; top: 12px; right: 12px; font-size: 1.3rem; }
.st-menu-user {
    font-size: 0.82rem;
    color: var(--st-text-faint);
    padding: 0 12px 14px;
    border-bottom: 1px solid var(--st-border);
    margin-bottom: 10px;
    overflow: hidden; text-overflow: ellipsis;
}
.st-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    padding: 13px 12px;
    border-radius: var(--st-radius-sm);
    color: var(--st-text);
    text-decoration: none;
    min-height: var(--st-touch-min);
    transition: background var(--st-dur-fast) var(--st-ease);
    cursor: pointer;
}
.st-menu-item:hover { background: var(--st-surface-2); }
.st-menu-item-packs { display: flex; align-items: center; gap: 9px; }
.st-menu-cube { width: 24px; height: 24px; }

/* [c101] */
.st-packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.st-pack {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px;
    padding: 16px 8px;
    background: var(--st-surface);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-md);
    font: inherit;
    cursor: pointer;
    transition: all var(--st-dur-fast) var(--st-ease);
}
.st-pack:hover { border-color: var(--st-accent); box-shadow: var(--st-shadow-sm); }
.st-pack-n { font-size: 1.5rem; font-weight: 700; }
.st-pack-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--st-text-faint); }
.st-pack-price { margin-top: 6px; font-size: 0.85rem; font-weight: 600; color: var(--st-text-soft); }
/* [c262] */
.st-pack-price, .st-checkout-summary-price, .st-tx-amount { white-space: nowrap; }
.st-pack-cur {
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.72;
    margin-left: 0.3em;
}
.st-tx-history { margin-top: 10px; }
.st-tx-row {
    display: flex; justify-content: space-between; gap: 10px;
    font-size: 0.84rem;
    padding: 8px 2px;
    border-bottom: 1px solid var(--st-border);
    color: var(--st-text-soft);
}
.st-setting-row { align-items: center; font-size: 1rem; color: var(--st-text); }

/* [c102] */
.st-trash { color: var(--st-danger); font-size: 1.05rem; }

/* [c103] */
.st-sharelink { display: flex; gap: 8px; margin-bottom: 14px; }
.st-sharelink-input {
    flex: 1; min-width: 0;
    font-size: 0.85rem;
    color: var(--st-text-soft);
    text-overflow: ellipsis;
}
.st-sharelink-copy { flex-shrink: 0; min-width: 104px; }
.st-sharelink-copy.st-copied { background: #1f9d4d; border-color: #1f9d4d; color: #fff; }
.st-share-socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
/* [c104] */
.st-share-socials.st-socials-odd .st-social:not([hidden]):last-of-type { grid-column: 1 / -1; }
/* [c263] */
.st-share-socials.st-socials-solo { grid-template-columns: 1fr; }
.st-social { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; margin: 0; }
.st-social svg { width: 16px; height: 16px; flex-shrink: 0; }
#send-save { margin-bottom: 8px; }
#send-proposal { display: block; text-align: center; }
#send-proposal[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.st-lightbox {
    position: fixed; inset: 0;
    background: rgba(10, 9, 8, 0.92);
    z-index: 90;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    touch-action: none;
    cursor: grab;
}
.st-lightbox img {
    max-width: 96vw; max-height: 96vh;
    transition: transform 60ms linear;
    user-select: none; -webkit-user-drag: none;
    pointer-events: none;
}
.st-lightbox-close { position: fixed; top: 16px; right: 16px; }
.st-qe-viewport { min-height: 320px; height: 40vh; position: relative; overflow: hidden;
    background: var(--st-surface-2); border-radius: var(--st-radius-md); cursor: crosshair;
    touch-action: none; /* [c105] */ }
.st-qe-body { overscroll-behavior: contain; }
/* [c106] */
.st-qe-viewport.st-qe-loading { cursor: progress; }
.st-qe-viewport.st-qe-loading::after {
    content: "Loading your render…";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--st-text-faint); font-size: 0.88rem;
}
.st-qe-body .st-toolrail { padding: 10px 0; }
.st-qe-toolrail { justify-content: center; }
.st-qe-toolrail .st-colors { margin-left: 6px; }
.st-qe-apply { margin-top: 4px; }

/* [c107] */
.st-share-wrap { max-width: 860px; margin: 0 auto; }
.st-compare {
    position: relative;
    --ar: 1.3333;   /* [c108] */
    --pos: 66%;     /* [c109] */
    width: min(100%, calc(min(72vh, 680px) * var(--ar)));
    aspect-ratio: var(--ar);
    margin: 0 auto;
    border-radius: var(--st-radius-lg);
    overflow: hidden;
    background: var(--st-surface-2);
    box-shadow: var(--st-shadow-lg);
    touch-action: pan-y;    /* [c110] */
    /* [c251] */
    cursor: pointer;
    user-select: none;
}
/* [c252] */
.st-compare:hover .st-cmp-line::before,
.st-compare.st-cmp-active .st-cmp-line::before {
    left: -2px;
    width: 4px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 12px rgba(0, 0, 0, 0.55);
}
.st-compare:hover .st-cmp-knob,
.st-compare.st-cmp-active .st-cmp-knob {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28), 0 3px 14px rgba(0, 0, 0, 0.4);
}
.st-cmp-line::before,
.st-cmp-knob { transition: transform 160ms var(--st-ease), box-shadow 160ms var(--st-ease), width 160ms var(--st-ease), left 160ms var(--st-ease); }
.st-cmp-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    /* [c111] */
    object-fit: cover;
    object-position: center;
    display: block;
    -webkit-user-drag: none;
    pointer-events: none;
}
.st-cmp-clip {
    position: absolute; inset: 0;
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
    background: var(--st-surface-2);   /* [c112] */
}
.st-cmp-line {
    position: absolute; top: 0; bottom: 0;
    left: var(--pos);
    width: 0;
    z-index: 3;
    pointer-events: none;
}
.st-cmp-line::before {
    content: "";
    position: absolute; top: 0; bottom: 0; left: -1.5px;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.st-cmp-knob {
    position: absolute; top: 50%; left: 0;
    transform: translate(-50%, -50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    display: flex; align-items: center; justify-content: center;
}
.st-cmp-knob svg { width: 18px; height: 18px; }
.st-cmp-badge {
    position: absolute; top: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(12, 11, 10, 0.6);
    color: #fff;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    transition: opacity var(--st-dur-fast) var(--st-ease);
    pointer-events: none;
}
.st-cmp-badge-before { left: 12px; }
.st-cmp-badge-after { right: 12px; }
.st-cmp-badge.faded { opacity: 0; }
.st-cmp-range { /* [c113] */
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    pointer-events: none;
    margin: 0;
}
.st-compare .st-expand { z-index: 4; }

/* [c114] */
.st-cmp-hint {
    position: absolute; inset: 0;
    z-index: 2;                       /* [c115] */
    background: rgba(15, 14, 12, 0.44);
    pointer-events: none;
    opacity: 1;
    transition: opacity 280ms var(--st-ease);
}
.st-cmp-tip {
    position: absolute; top: 50%;
    left: var(--pos);
    /* [c116] */
    transform: translate(calc(-100% - 30px), -50%);
    z-index: 3;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(12, 11, 10, 0.82);
    color: #fff;
    font-size: 0.78rem; font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: opacity 280ms var(--st-ease);
}
/* [c117] */
/* [c253] */
/* [c118] */
.st-compare.st-cmp-hinted .st-cmp-hint,
.st-compare.st-cmp-hinted .st-cmp-tip { opacity: 0; }

.st-share-actions { display: flex; justify-content: center; margin: 22px 0 6px; }
.st-share-products { max-width: 460px; margin: 22px auto 0; text-align: left; }
.st-share-note { color: var(--st-text-faint); font-size: 0.8rem; margin-top: 20px; text-align: center; }

/* [c119] */
.st-proposal-body { background: var(--st-surface-2); }
.st-proposal-page {
    width: min(7.8in, 96vw);
    margin: 18px auto;
    background: #fff;
    color: #1c1a17;
    border-radius: 6px;
    box-shadow: var(--st-shadow-lg);
    padding: 0.42in 0.45in;
}
.st-proposal-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    border-bottom: 2px solid #e8e4de;
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.st-proposal-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.st-proposal-brand img { height: 34px; width: auto; }
.st-proposal-brand strong { font-family: var(--st-font-heading); font-size: 1.05rem; white-space: nowrap; }
.st-proposal-title { text-align: right; }
.st-proposal-title h1 { font-family: var(--st-font-heading); font-size: 1.15rem; margin: 0; }
.st-proposal-title p { margin: 2px 0 0; font-size: 0.72rem; color: #8a8378; }
.st-proposal-img { text-align: center; margin-bottom: 16px; }
.st-proposal-img img {
    max-width: 100%;
    border-radius: 4px;
    /* [c120] */
    max-height: 4.7in;
}
.st-proposal-img.st-o-portrait img { max-height: 5.4in; }
.st-proposal-img.st-o-square img { max-height: 5in; }
.st-proposal-h2 {
    font-family: var(--st-font-heading);
    font-size: 0.86rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #6f695f;
    margin: 0 0 10px;
}
.st-proposal-products {
    display: flex; flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 14px;
}
.st-proposal-card {
    flex: 1 1 0;
    min-width: 88px; max-width: 132px;
    border: 1px solid #e8e4de;
    border-radius: 6px;
    padding: 7px;
    text-align: center;
    break-inside: avoid;
}
.st-proposal-card img {
    width: 100%; aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 6px;
}
.st-proposal-card strong { display: block; font-size: 0.68rem; line-height: 1.25; }
.st-proposal-card span { display: block; font-size: 0.6rem; color: #8a8378; margin-top: 2px; line-height: 1.3; }
.st-proposal-disclaimer {
    font-size: 0.58rem;
    color: #a09a8e;
    line-height: 1.5;
    border-top: 1px solid #e8e4de;
    padding-top: 8px;
    margin: 0 0 4px;
}
.st-proposal-foot {
    display: flex; justify-content: space-between;
    font-size: 0.62rem; color: #8a8378;
}
@media print {
    @page { size: letter portrait; margin: 0.35in; }
    body, .st-proposal-body { background: #fff !important; }
    /* [c121] */
    .st-devbar, .st-footer, .st-noprint, .st-topbar .st-topbar-side { display: none !important; }
    .st-proposal-page {
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .st-proposal-head, .st-proposal-img, .st-proposal-products,
    .st-proposal-card, .st-proposal-disclaimer, .st-proposal-foot { break-inside: avoid; }

    /* [c122] */
    .st-topbar { padding-bottom: 4px; }
    .st-cmp-clip, .st-cmp-line, .st-cmp-badge, .st-cmp-range, .st-expand,
    .st-cmp-hint, .st-cmp-tip { display: none !important; }
    .st-compare, .st-result-frame {
        box-shadow: none; border-radius: 0;
        width: 100% !important; max-width: 100%;
        background: none;
    }
    .st-share-products { max-width: 100%; }
    .st-product-row { break-inside: avoid; }
}

/* [c123] */
.st-portal { max-width: 900px; margin: 0 auto; }
.st-portal-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.st-portal-body { background: var(--st-bg-elevated); border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-lg); padding: 24px; min-height: 320px; }
.st-portal-role { color: var(--st-text-soft); font-size: 0.85rem; margin: 0 0 10px; }
.st-portal-sub { color: var(--st-text-soft); font-size: 0.88rem; }
.st-portal-saved { background: var(--st-success); color: #fff; padding: 8px 14px;
    border-radius: var(--st-radius-sm); font-size: 0.88rem; animation: st-fade-up var(--st-dur-fast) var(--st-ease) both; }
.st-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin-bottom: 20px; }
.st-tile { background: var(--st-surface-2); border-radius: var(--st-radius-md); padding: 16px 12px; text-align: center; }
.st-tile-n { display: block; font-size: 1.5rem; font-weight: 700; }
.st-tile-l { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--st-text-faint); }
.st-bars { display: flex; align-items: flex-end; gap: 3px; height: 120px;
    background: var(--st-surface-2); border-radius: var(--st-radius-sm); padding: 8px; }
.st-bar { flex: 1; min-width: 4px; background: var(--st-accent); border-radius: 3px 3px 0 0; opacity: 0.85; }
.st-col-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--st-border); }
.st-col-row.disabled { opacity: 0.5; }
.st-ce-add { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 10px; }
.st-ce-add .st-input { flex: 1; min-width: 180px; }
.st-lead-row { padding: 10px 0; border-bottom: 1px solid var(--st-border); }
.st-meter { height: 14px; background: var(--st-surface-2); border-radius: 999px; overflow: hidden; }
.st-meter-fill { height: 100%; background: var(--st-accent); border-radius: 999px; transition: width var(--st-dur) var(--st-ease); }
.st-v2-holder { margin: 12px 0; min-height: 78px; }

/* [c124] */
@media (max-width: 860px) {
    /* [c125] */
    .st-topbar { padding: 9px clamp(16px, 4vw, 40px); min-height: 74px; }
    .st-brand-logo { height: 26px; }
    .st-brand { max-width: min(46vw, 200px); }
    .st-funnel { padding-top: 12px; }
    .st-hero-sub { margin-bottom: 18px; }

    .st-studio { display: block; min-height: 0; }
    .st-studio-viewport { min-height: 48vh; }

    /* [c126] */
    .st-drawpill { display: block; }

    /* [c127] */

    .st-toolrail { animation: st-rail-in 0.28s var(--st-ease) both; }
    @keyframes st-rail-in {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* [c128] */
    .st-tool { width: 48px; height: 48px; }
    .st-tool svg { width: 24px; height: 24px; }
    .st-product-brush { width: 44px; height: 44px; }
    .st-toolrail .st-size { width: 88px; }

    /* [c129] */

    /* [c130] */
    /* [c131] */
    .st-plan {
        position: static;
        transform: none;
        border: none;
        background: transparent;
        padding: 6px 0 92px; /* [c132] */
        box-shadow: none;
        overflow: visible;
        overscroll-behavior: auto;
    }
    .st-plan.sheet-open { overscroll-behavior: contain; }
    .st-plan:not(.sheet-open) [data-tab-panel="options"] { display: none; }
    .st-plan:not(.sheet-open) .st-sheet-close { display: none; }

    .st-plan.sheet-open {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        top: auto;
        max-height: 78vh;
        overflow-y: auto;
        background: var(--st-bg-elevated);
        border: 1.5px solid var(--st-border);
        border-radius: var(--st-radius-xl) var(--st-radius-xl) 0 0;
        z-index: 50;
        box-shadow: var(--st-shadow-lg);
        padding: 30px 20px 92px;
    }
    .st-plan.sheet-open [data-tab-panel="products"] { display: none; }
    .st-plan.sheet-open [data-tab-panel="options"] { display: block; }
    /* [c133] */
    .st-plan.sheet-open { animation: st-sheet-up 260ms var(--st-ease) both; }
    .st-plan.sheet-open.sheet-closing { animation: st-sheet-down 240ms var(--st-ease) both; }
    @keyframes st-sheet-up   { from { transform: translateY(100%); } to { transform: translateY(0); } }
    @keyframes st-sheet-down { from { transform: translateY(0); } to { transform: translateY(100%); } }
    @media (prefers-reduced-motion: reduce) {
        .st-plan.sheet-open, .st-plan.sheet-open.sheet-closing { animation: none; }
    }
    .st-sheet-close {
        display: flex;
        position: absolute; top: 8px; right: 12px;
        background: none; border: none;
        width: var(--st-touch-min); height: var(--st-touch-min);
        align-items: center; justify-content: center;
        font-size: 1.4rem; color: var(--st-text-soft);
    }

    .st-mobilebar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        display: flex;
        gap: 10px;
        padding: 26px 14px calc(12px + env(safe-area-inset-bottom));
        /* [c134] */
        background: linear-gradient(to top,
            var(--st-bg-elevated) 0%,
            var(--st-bg-elevated) 62%,
            rgba(255, 255, 255, 0) 100%);
        /* [c135] */
        z-index: 55;
        pointer-events: none;   /* [c136] */
    }
    .st-mobilebar > * { pointer-events: auto; }
    /* [c137] */
    .st-chip[data-sheet="products"] { display: none; }
    /* [c138] */
    .st-plan .st-transform { display: none; }
    .st-transform-mobile {
        flex: 1; margin: 0;
        padding: 16px 18px;
        font-size: 1.08rem;
        border-radius: var(--st-radius-md);
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
    }
    .st-drawbar { display: flex; }
    .st-funnel { padding-bottom: 104px; }

    /* [c139] */
    /* [c140] */
    #step-collections .st-cta {
        position: fixed;
        left: 14px; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom));
        z-index: 55;
        margin: 0;
        padding: 16px 18px;
        font-size: 1.08rem;
        border-radius: var(--st-radius-md);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
        animation: st-cta-rise 380ms var(--st-ease) both;
    }
    /* [c141] */
    #step-collections.st-cta-veil::after {
        content: "";
        position: fixed;
        left: 0; right: 0; bottom: 0;
        height: 148px;
        z-index: 54;
        pointer-events: none;
        background: linear-gradient(to top,
            var(--st-bg) 0%,
            var(--st-bg) 42%,
            rgba(255, 255, 255, 0) 100%);
    }
    #step-collections .st-collections { padding-bottom: 104px; }
    @keyframes st-cta-rise {
        from { opacity: 0; transform: translateY(26px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
@media (min-width: 861px) {
    .st-transform-mobile { display: none; }
    .st-drawbar { display: none; }
}

/* [c142] */
@media (max-height: 820px) {
    .st-funnel { padding-top: 14px; padding-bottom: 24px; }
    .st-hero-title { font-size: clamp(1.35rem, 3.2vw, 1.9rem); margin-bottom: 6px; }
    .st-back { height: calc(clamp(1.35rem, 3.2vw, 1.9rem) * 1.2); } /* [c143] */
    .st-hero-sub { margin-bottom: 14px; }
    .st-uploader { aspect-ratio: auto; height: min(44vh, 460px); }
    .st-cta { margin-top: 14px; }
    .st-or-divider { margin-top: 10px; }
    .st-hero .st-btn-ghost { margin-top: 12px; }
}

/* [c144] */

.st-kiosk .st-btn { min-height: 56px; }
.st-kiosk .st-tool { min-width: 56px; min-height: 56px; }

.st-kiosk-code {
    max-width: 340px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-family: var(--st-font-heading);
}

/* [c145] */
.st-kiosk-splash {
    position: fixed; inset: 0;
    z-index: 90;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 18px;
    background: var(--st-bg);
    text-align: center;
    cursor: pointer;
    animation: st-fade-up var(--st-dur) var(--st-ease) both;
}
.st-kiosk-splash-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 4vh; }
.st-kiosk-splash-brand img { height: 56px; width: auto; }
.st-kiosk-splash-name { font-family: var(--st-font-heading); font-size: 1.6rem; font-weight: 700; }
.st-kiosk-splash-title {
    font-family: var(--st-font-heading);
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    margin: 0;
}
.st-kiosk-splash-tap {
    color: var(--st-text-faint);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: st-glow-pulse 2.8s var(--st-ease) infinite;
}
.st-kiosk-unavail { cursor: default; }

/* [c146] */
.st-kiosk-overlay {
    position: fixed; inset: 0;
    z-index: 80;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    padding: 24px;
    background: var(--st-bg);
    text-align: center;
}
.st-kiosk-result-frame { max-width: min(1100px, 82vw); max-height: 62vh; overflow: hidden; }
.st-kiosk-result-frame img { max-height: 62vh; object-fit: contain; }
.st-kiosk-result .st-result-products { max-height: 24vh; overflow: auto; }

/* [c147] */
.st-kiosk-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 56px);
    margin-top: 30px;
    flex-wrap: wrap;
}
.st-kiosk-qrpanel {
    background: var(--st-bg-elevated);
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    box-shadow: var(--st-shadow-md);
    padding: 26px;
    animation: st-glow-pulse 2.8s var(--st-ease) infinite;
}
.st-kiosk-qr { width: clamp(220px, 26vw, 360px); }
.st-kiosk-qr svg { width: 100%; height: auto; display: block; border-radius: var(--st-radius-sm); }
.st-kiosk-qrhint { color: var(--st-text-soft); font-size: 0.95rem; margin: 14px 0 0; }
.st-kiosk-photo-or { color: var(--st-text-faint); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; }
.st-kiosk-directbtn { min-width: 240px; }
.st-kiosk-idlebody { text-align: center; padding: 10px 6px; }
.st-kiosk-idlebody .st-dialog-sub { font-size: 1.1rem; margin: 10px 0 18px; }

/* [c148] */
.st-invtoggle { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; color: var(--st-text-soft); cursor: pointer; white-space: nowrap; }
.st-invtoggle input { width: 18px; height: 18px; accent-color: var(--st-accent); }
.st-inv-vars { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; padding: 10px 4px 16px 62px; border-bottom: 1px solid var(--st-border); }
.st-invtoggle-var { white-space: normal; }
.st-pickrow { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
.st-pickrow:hover { background: var(--st-surface-2); }

/* [c149] */
.st-devdocs { max-width: 780px; margin: 0 auto; padding: 20px 18px 60px; }
.st-devdocs h1 { font-family: var(--st-font-heading); font-size: 2rem; margin: 10px 0 6px; }
.st-dev-v { font-size: 0.9rem; color: var(--st-text-faint); vertical-align: super; }
.st-dev-lead { color: var(--st-text-soft); line-height: 1.65; }
.st-devdocs h2 { font-family: var(--st-font-heading); font-size: 1.15rem; margin: 34px 0 8px; }
.st-devdocs p { line-height: 1.65; font-size: 0.94rem; }
.st-devdocs pre { background: var(--st-surface-2); border: 1px solid var(--st-border); border-radius: var(--st-radius-md);
    padding: 14px 16px; overflow-x: auto; font-size: 0.82rem; line-height: 1.55; }
.st-devdocs code { background: var(--st-surface-2); border-radius: 4px; padding: 1px 5px; font-size: 0.85em; }
.st-devdocs pre code { background: none; padding: 0; }
.st-dev-errors { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.st-dev-errors td { border-top: 1px solid var(--st-border); padding: 8px 10px 8px 0; vertical-align: top; }

/* [c150] */
.st-footer-legal { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--st-text-faint); opacity: 0.85; }
.st-footer-legal a { color: inherit; text-decoration: none; }
.st-footer-legal a:hover { text-decoration: underline; }
.st-legal { max-width: 720px; margin: 0 auto; padding: 20px 18px 60px; line-height: 1.65; }
.st-legal h1 { font-family: var(--st-font-heading); font-size: 1.8rem; margin: 8px 0 6px; }
.st-legal h2 { font-family: var(--st-font-heading); font-size: 1.1rem; margin: 26px 0 6px; }
.st-legal p, .st-legal li { color: var(--st-text-soft); }
.st-legal ul { padding-left: 20px; }
.st-legal li { margin-bottom: 6px; }
.st-legal-updated { color: var(--st-text-faint); font-size: 0.85rem; font-style: italic; }

/* [c277] */
.st-legal h2 { scroll-margin-top: 18px; }
.st-legal a { color: var(--st-text); text-decoration: underline; text-underline-offset: 2px; }
.st-legal a:hover { color: var(--st-accent); }
.st-legal-lead { font-size: 1.02rem; margin-top: 14px; }
.st-legal code { background: var(--st-surface-2); border-radius: 4px; padding: 1px 5px; font-size: 0.85em; }

.st-legal-toc {
    display: flex; flex-wrap: wrap; gap: 6px 14px;
    margin: 20px 0 6px; padding: 14px 16px;
    background: var(--st-surface-2); border-radius: var(--st-radius-md);
    font-size: 0.82rem;
}
.st-legal-toc a { color: var(--st-text-soft); text-decoration: none; }
.st-legal-toc a:hover { color: var(--st-text); text-decoration: underline; }

.st-legal-contact {
    margin: 14px 0 6px; padding: 14px 16px;
    background: var(--st-surface-2); border-left: 3px solid var(--st-accent);
    border-radius: var(--st-radius-sm);
}
.st-legal-contact p { margin: 0 0 4px; }
.st-legal-contact p:last-child { margin-bottom: 0; }
.st-legal-contact-name { color: var(--st-text); font-weight: 600; }
.st-legal-contact-addr { white-space: normal; font-size: 0.9rem; }

/* [c278] */
.st-legal-tablewrap { overflow-x: auto; margin: 14px 0 18px; }
.st-legal-table { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 0.9rem; }
.st-legal-table th {
    text-align: left; font-family: var(--st-font-heading); font-weight: var(--st-weight-heading);
    color: var(--st-text); border-bottom: 1px solid var(--st-border); padding: 8px 14px 8px 0;
}
.st-legal-table td {
    color: var(--st-text-soft); border-top: 1px solid var(--st-border);
    padding: 10px 14px 10px 0; vertical-align: top; line-height: 1.55;
}
.st-legal-table td strong { color: var(--st-text); }
.st-legal-table tr td:last-child, .st-legal-table tr th:last-child { padding-right: 0; }

/* [c279] */
@media (max-width: 560px) {
    .st-legal-tablewrap { overflow-x: visible; }
    .st-legal-table { min-width: 0; }
    .st-legal-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .st-legal-table tr { display: block; border-top: 1px solid var(--st-border); padding: 12px 0; }
    .st-legal-table td { display: block; border: 0; padding: 0; }
    .st-legal-table td:first-child { color: var(--st-text); font-weight: 600; margin-bottom: 4px; }
    .st-legal-table td[data-l]::before {
        content: attr(data-l);
        display: block; margin-top: 8px;
        font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
        color: var(--st-text-faint);
    }
}

/* [c151] */

/* [c152] */
.st-btn-cube {
    width: 22px; height: 22px;
    margin-right: 9px;
    vertical-align: -5px;
    display: inline-block;
}

/* [c153] */
.st-btn-danger-soft {
    background: none;
    border: 1.5px solid rgba(214, 69, 69, 0.55);
    color: #d64545;
}
.st-btn-danger-soft:hover { background: rgba(214, 69, 69, 0.08); border-color: #d64545; }
.st-btn-danger { background: #d64545; border: 1.5px solid #d64545; color: #fff; }
.st-btn-danger:hover { background: #c03a3a; }

/* [c154] */
.st-dialog-sm { width: min(420px, 100%); }
.st-confirm-title { font-family: var(--st-font-heading); font-size: 1.16rem; margin: 0 0 8px; }
.st-confirm-text { color: var(--st-text-soft); font-size: 0.94rem; margin: 0 0 20px; }
.st-confirm-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.st-confirm-actions .st-btn { width: 100%; margin: 0; }

/* [c155] */
.st-share-preview {
    border-radius: var(--st-radius-md);
    overflow: hidden;
    background: var(--st-surface-2);
    margin-bottom: 14px;
    max-height: 172px;
    display: flex; align-items: center; justify-content: center;
}
.st-share-preview img { width: 100%; max-height: 172px; object-fit: contain; display: block; }

/* [c156] */
.st-packs-title { font-size: 1.42rem; }
.st-packs-history-btn { display: block; margin: 12px auto 0; }
.st-pack-count { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.st-pack-cube { width: 26px; height: 26px; display: block; }

/* [c157] */

/* [c158] */
.st-scrollmode .st-toolrail,
.st-scrollmode .st-histrow,
.st-scrollmode .st-brush-ring { display: none !important; }
.st-scrollmode .st-product-brush { display: none; }
/* [c159] */
.st-scrollmode .st-studio-viewport { cursor: default; }

/* [c160] */
.st-drawpill-ico { display: inline-flex; align-items: center; }
.st-drawpill-ico svg { width: 15px; height: 15px; }
.st-drawpill { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.st-drawbtn-desktop {
    width: 100%;
    margin: 0 0 16px;
    background: var(--st-text);
    border: 1.5px solid var(--st-text);
    color: var(--st-bg);
}
.st-drawbtn-desktop.st-drawpill-on {
    background: #1f9d4d; border-color: #1f9d4d; color: #fff;
}

/* [c161] */
.st-coach {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index: 1000;
    opacity: 0;
    transition: opacity 260ms var(--st-ease);
}
.st-coach.show { opacity: 1; }
/* [c162] */
.st-coaching .st-product-brush {
    position: relative;
    z-index: 1001;
    background: var(--st-surface);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28),
                0 0 26px 7px var(--brush-c, #e53935);
    animation: st-coach-pulse 1.5s ease-in-out infinite;
}
@keyframes st-coach-pulse {
    50% { transform: scale(1.09); }
}
.st-coach-tip {
    position: fixed;
    z-index: 1002;
    /* [c163] */
    left: 12px;
    top: 12px;
    width: min(340px, calc(100vw - 24px));
    background: var(--st-bg-elevated);
    color: var(--st-text);
    border-radius: var(--st-radius-md);
    box-shadow: var(--st-shadow-lg);
    padding: 15px 18px;
    text-align: center;
    opacity: 0;
    transition: opacity 260ms var(--st-ease);
}
.st-coach-tip.show { opacity: 1; }
.st-coach-tip strong {
    display: block;
    font-family: var(--st-font-heading);
    font-size: 1.05rem;
    margin-bottom: 5px;
}
.st-coach-tip span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--st-text-soft);
}
/* [c164] */
.st-coach-arrow {
    position: absolute;
    bottom: -9px;
    width: 0; height: 0;
    margin-left: -9px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid var(--st-bg-elevated);
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.16));
}
@media (prefers-reduced-motion: reduce) {
    .st-coaching .st-product-brush { animation: none; }
}

/* [c165] */
@keyframes st-brush-breathe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
    50%      { box-shadow: 0 0 11px 2px var(--brush-c, #e53935); }
}
/* [c166] */
.st-product-brush:not(.active) {
    animation: st-brush-breathe 2.6s ease-in-out infinite;
}
.st-product-brush.active { animation: none; }
@media (prefers-reduced-motion: reduce) {
    .st-product-brush:not(.active) { animation: none; }
}

/* [c167] */
@media (max-width: 860px) {
    .st-drawbtn-desktop { display: none; }
}

/* [c168] */
.st-confirm-actions-one { grid-template-columns: 1fr; }
.st-confirm-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
    user-select: all;
    background: var(--st-surface-2);
    border-radius: var(--st-radius-sm);
    padding: 12px;
    margin: 0 0 20px;
    max-height: 46vh;
    overflow: auto;
}
.st-formrows { margin-bottom: 20px; }
.st-formrow { margin-bottom: 12px; }
.st-formrow-check { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; }
.st-formrow-check input { width: 18px; height: 18px; }
.st-formhint { color: var(--st-text-faint); font-size: 0.78rem; margin: 4px 0 0; }

/* [c169] */
.st-btn, .st-btn-ghost, .st-btn-ghost2, .st-btn-login, .st-tool, .st-chip,
.st-pill, .st-pack, .st-sample-tile, .st-icon-btn, .st-drawbar-btn,
.st-menu-item, .st-social, .st-sharelink-copy {
    transition: background-color var(--st-dur) var(--st-ease),
                border-color var(--st-dur) var(--st-ease),
                box-shadow var(--st-dur) var(--st-ease),
                color var(--st-dur-fast) var(--st-ease),
                filter var(--st-dur) var(--st-ease),
                transform var(--st-dur-fast) var(--st-ease);
    will-change: transform;
}
@media (hover: hover) {
    /* [c170] */
    .st-btn-primary:hover:not(:disabled) {
        filter: brightness(1.14) saturate(1.03);
        transform: translateY(-1.5px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    }
    /* [c171] */
    .st-btn-ghost2:hover:not(:disabled),
    .st-drawbar-btn:hover:not(:disabled),
    .st-social:hover:not(:disabled) {
        border-color: var(--st-accent);
        background: var(--st-accent-soft);
        transform: translateY(-1.5px);
        box-shadow: 0 8px 20px var(--st-glow);
    }
    .st-btn-ghost:hover, .st-menu-item:hover { background: var(--st-surface-2); }
    .st-tool:hover:not(:disabled), .st-icon-btn:hover, .st-chip:hover, .st-pill:hover {
        border-color: var(--st-accent);
        box-shadow: 0 4px 14px var(--st-glow);
    }
    .st-pack:hover { transform: translateY(-3px); box-shadow: 0 12px 28px var(--st-glow-strong); }
    /* [c172] */
    .st-sample-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 30px var(--st-glow-strong); }
}
.st-btn:active:not(:disabled), .st-drawbar-btn:active, .st-tool:active:not(:disabled) {
    transform: translateY(0) scale(0.985);
}
/* [c173] */
.st-sample-tile, .st-collection-tile {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
.st-sample-tile.selected, .st-collection-tile.selected {
    box-shadow: 0 0 0 4px var(--st-accent-soft), 0 10px 26px var(--st-glow);
}

/* [c174] */
/* [c175] */
.st-toolrail { display: flex; align-items: center; gap: 8px; padding: 8px 4px 0; flex-wrap: nowrap; }
.st-toolrail .st-size { flex: 0 1 150px; margin-left: auto; }

/* [c176] */
.st-railhost {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
    min-width: 0;
}
.st-railhost .st-toolrail {
    padding: 0;
    gap: 8px;
    /* [c177] */
    margin-top: 6px;
    justify-content: flex-start;
    min-width: 0;
    /* [c178] */
    animation: st-tools-in 320ms var(--st-ease) both;
}
/* [c179] */
.st-railhost .st-toolrail .st-size { flex: 1 1 60px; min-width: 50px; margin-left: 0; }
/* [c180] */
.st-railhost .st-toolrail .st-brushbtn { margin-right: 10px; }
@keyframes st-tools-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* [c181] */
.st-railhost .st-drawbtn-desktop {
    width: 100%;
    margin: 0;
    padding: 11px 16px;
    min-height: 44px;
    font-size: 0.95rem;
}

/* [c182] */
.st-funnel { padding-top: 10px; }        /* [c183] */
/* [c184] */
@media (min-width: 861px) {
    .st-funnel { padding-bottom: 16px; }
}
@media (min-width: 1200px) {
    /* [c185] */
    .st-landing-split.st-split-on {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
        gap: 40px;
        align-items: stretch;
        height: var(--st-avail, auto);
        min-height: 470px;
    }
    .st-landing-split.st-split-on > .st-step {
        display: flex;
        align-items: center;      /* [c186] */
        min-height: 0;
    }
    .st-landing-split.st-split-on > .st-step > .st-hero { width: 100%; }
    .st-landing-split.st-split-on .st-history {
        display: flex;
        flex-direction: column;
        /* [c187] */
        justify-content: flex-start;
        /* [c264] */
        padding-top: var(--st-hist-off, var(--st-hist-top, 0px));
        min-height: 0;            /* [c188] */
        margin: 0;
        border-top: none;
        max-width: none;
    }
    .st-landing-split.st-split-on .st-history-body {
        /* [c189] */
        flex: 0 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 4px;       /* [c190] */
    }
    .st-landing-split.st-split-on .st-hero { margin-top: 0; }
}

/* [c191] */
@media (min-width: 861px) {
    .st-landing-split:not(.st-split-on) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: var(--st-avail, auto);
    }
    /* [c192] */
    .st-landing-split .st-uploader {
        height: min(540px, calc(var(--st-avail, 660px) - 210px));
        width: auto;
        /* [c193] */
        max-width: min(760px, 100%);
    }
    .st-landing-split.st-split-on .st-uploader {
        height: min(440px, calc(var(--st-avail, 660px) - 210px));
        /* [c194] */
        max-width: min(100%, calc((var(--st-avail, 660px) - 210px) * 4 / 3));
    }
}
.st-history-note {
    color: var(--st-text-faint);
    font-size: 0.78rem;
    margin: 2px 0 12px;
}
.st-history-sentinel { height: 1px; }

/* [c195] */
/* [c196] */
.st-restoring > .st-landing-split,
.st-restoring > #step-collections { display: none !important; }

/* [c197] */
.st-landing-split.st-split-away { display: none !important; }
.st-restore-splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46vh;
    color: var(--st-text-soft);
}
.st-restore-cube { width: 64px; height: 64px; display: block; }

/* [c198] */

/* [c199] */
.st-history { transition: opacity 300ms var(--st-ease); }
.st-landing-split.st-photo-focus .st-history {
    opacity: 0;
    pointer-events: none;
}
@media (min-width: 1200px) {
    .st-landing-split.st-split-on {
        transition: grid-template-columns 420ms var(--st-ease),
                    gap 420ms var(--st-ease);
    }
    .st-landing-split.st-photo-focus {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0fr);
        gap: 0;
    }
    /* [c200] */
    .st-landing-split.st-photo-focus .st-history {
        overflow: hidden;
        min-width: 0;
    }
}

/* [c201] */
.st-nextstep {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--st-border);
}
.st-nextstep-title {
    font-family: var(--st-font-heading);
    font-size: clamp(1.15rem, 2.4vw, 1.42rem);
    margin: 0 0 14px;
    line-height: 1.25;
}
.st-formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
@media (max-width: 560px) { .st-formgrid { grid-template-columns: 1fr; } }
.st-consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.82rem; color: var(--st-text-soft);
    margin: 4px 0 16px;
}
.st-consent input { margin-top: 3px; width: 17px; height: 17px; flex-shrink: 0; }

/* [c202] */
.st-lead-referral { border-left: 3px solid var(--st-accent); }
.st-lead-brief {
    display: flex; flex-wrap: wrap; gap: 4px 14px;
    margin-top: 6px;
    font-size: 0.8rem; color: var(--st-text-soft);
    white-space: normal;
}
.st-lead-brief b { color: var(--st-text); font-weight: 600; }
.st-lead-brief p { flex: 1 1 100%; margin: 4px 0 0; white-space: pre-wrap; }

/* [c203] */
@media (max-width: 860px) {
    .st-railhost { display: none !important; }
}

/* [c204] */
.st-drawbar, #studio-tools, #hist-host { flex: 0 0 auto; }
/* [c205] */
.st-studio-canvas > #studio-tools { margin-top: 12px; }

/* [c206] */
.st-histrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}
.st-histrow:empty { display: none; }

/* [c207] */

/* [c208] */
.st-beforebtn {
    position: absolute; top: 10px; right: 58px;
    height: 40px;
    /* [c209] */
    width: 118px;
    padding: 0;
    text-align: center;
    border: none;
    border-radius: var(--st-radius-sm);
    background: rgba(12, 11, 10, 0.55);
    color: #fff;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    transition: background var(--st-dur-fast) var(--st-ease),
                color var(--st-dur-fast) var(--st-ease);
}
.st-beforebtn:hover { background: rgba(12, 11, 10, 0.82); }
.st-beforebtn.st-beforebtn-on { background: #fff; color: #16150f; }

/* [c210] */
.st-dialog-qe {
    width: min(1140px, 100%);
    height: min(88vh, 900px);
    max-height: none;
}
.st-qe-stage { display: flex; flex-direction: column; min-width: 0; min-height: 0; }
.st-qe-histrow {
    display: flex; justify-content: center; align-items: center;
    gap: 10px;
    padding-top: 10px;
    flex: 0 0 auto;
}
.st-qe-side { min-width: 0; }
.st-qe-side .st-plan-heading { margin-top: 0; }
.st-qe-side .st-qe-toolrail { padding: 0 0 16px; justify-content: flex-start; }
.st-qe-instructions { margin-top: 0; }
@media (min-width: 861px) {
    .st-qe-body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 24px;
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;          /* [c211] */
    }
    .st-qe-viewport { height: auto; min-height: 0; flex: 1 1 auto; }
    .st-qe-side {
        display: flex; flex-direction: column;
        min-height: 0;
        overflow-y: auto;
    }
    .st-qe-side .st-qe-apply { margin-top: auto; }  /* [c212] */
    .st-qe-side .st-field-error { margin-bottom: 10px; }
}
@media (max-width: 860.98px) {
    .st-dialog-qe { width: min(720px, 100%); height: min(88vh, 820px); }
    .st-qe-viewport { height: 42vh; min-height: 280px; }
    .st-qe-side { padding-top: 4px; }
}

/* [c213] */
.st-dialog-packs { width: min(560px, 100%); }
.st-dialog-packs .st-packs { gap: 12px; margin-top: 8px; }
.st-dialog-packs .st-pack { padding: 22px 10px 18px; gap: 4px; }
.st-dialog-packs .st-pack-n { font-size: 1.9rem; }
.st-dialog-packs .st-pack-cube { width: 32px; height: 32px; }
/* [c265] */
.st-dialog-packs .st-pack-price {
    font-size: clamp(0.76rem, 3.1vw, 0.95rem);
    margin-top: 4px;
}
@media (max-width: 460px) {
    .st-dialog-packs .st-packs { gap: 8px; }
    .st-dialog-packs .st-pack { padding: 18px 4px 15px; }
    .st-dialog-packs .st-pack-n { font-size: 1.6rem; }
    .st-dialog-packs .st-pack-cube { width: 26px; height: 26px; }
}
.st-packs-sub { text-align: center; }
.st-stripe-note {
    display: flex; align-items: center; justify-content: center;
    gap: 7px;
    margin: 16px 0 0;
    font-size: 0.78rem;
    color: var(--st-text-faint);
}
.st-stripe-note svg { width: 12px; height: 12px; flex-shrink: 0; }
.st-stripe-note b { font-weight: 700; letter-spacing: 0.01em; }

/* [c214] */
.st-checkout-back { margin: 0 0 10px; padding-left: 0; }
.st-checkout-mount { min-height: 420px; }
.st-checkout-note {
    text-align: center;
    color: var(--st-text-faint);
    font-size: 0.82rem;
    padding: 26px 0;
}

/* [c215] */
.st-setting-block {
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-md);
    padding: 14px 16px;
    margin-bottom: 12px;
}
.st-setting-block .st-plan-heading { margin: 0 0 10px; }
.st-setting-line {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    min-height: 34px;
}
.st-setting-name { font-weight: 600; }
.st-setting-hint { display: block; font-size: 0.8rem; color: var(--st-text-soft); margin-top: 1px; }
.st-oauth-note {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.86rem;
    color: var(--st-text-soft);
    margin: 0;
}
.st-oauth-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.st-setting-block .st-btn { width: 100%; margin-top: 10px; }

/* [c216] */
.st-switch { position: relative; display: inline-block; flex-shrink: 0; }
.st-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.st-switch-track {
    display: block;
    width: 46px; height: 26px;
    border-radius: 999px;
    background: var(--st-border);
    transition: background var(--st-dur-fast) var(--st-ease);
    pointer-events: none;
}
.st-switch-track::after {
    content: "";
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
    transition: transform var(--st-dur-fast) var(--st-ease);
}
.st-switch input:checked + .st-switch-track { background: var(--st-accent); }
.st-switch input:checked + .st-switch-track::after { transform: translateX(20px); }
.st-switch input:focus-visible + .st-switch-track { box-shadow: 0 0 0 3px var(--st-accent-soft); }

/* [c217] */
.st-kiosk-topbar { min-height: 84px; }
.st-kiosk-topbar .st-topbar-side { min-width: 40px; }

/* [c218] */

/* [c219] */
.st-advtoggle {
    display: none;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    padding: 4px 0;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--st-text-soft);
    cursor: pointer;
    transition: color var(--st-dur-fast) var(--st-ease);
}
.st-advtoggle:hover { color: var(--st-text); }
.st-advtoggle svg {
    width: 12px; height: 12px;
    transition: transform var(--st-dur-fast) var(--st-ease);
}
.st-advtoggle.open svg { transform: rotate(180deg); }
@media (min-width: 861px) {
    .st-advtoggle { display: inline-flex; }
    /* [c220] */
    .st-plan:not(.st-adv-open) [data-tab-panel="options"] { display: none; }
}
/* [c221] */
[data-tab-panel="options"] .st-plan-heading { margin-top: 16px; }
[data-tab-panel="options"] .st-plan-heading:first-child { margin-top: 6px; }

/* [c222] */
.st-menu-footer {
    margin-top: auto;
    padding: 14px 12px 2px;
    border-top: 1px solid var(--st-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.74rem;
    color: var(--st-text-faint);
}
.st-menu-footer a { color: inherit; text-decoration: none; }
.st-menu-footer a:hover { text-decoration: underline; }
.st-menu-footer-links { display: flex; gap: 8px; }

/* [c223] */
.st-footer-inline {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    padding: 14px 16px 16px;
}

/* [c224] */
@media (min-width: 1200px) {
    .st-landing-split.st-split-on.st-cols-one { grid-template-columns: minmax(0, 1fr); }
}
.st-samples { margin-top: 30px; }

/* [c225] */
.st-result-stage {
    --ar: 1.3333;
    --st-img-max: min(76vh, 720px);
}
/* [c226] */
.st-result-stage .st-result-frame.st-ar { --ar: inherit; --st-img-max: inherit; }
.st-result-stage .st-disclaimer {
    width: min(100%, calc(var(--st-img-max) * var(--ar)));
    max-width: none;
    margin: 10px auto 0;
}

/* [c227] */
.st-share { padding-top: 12px; }
.st-share-stage {
    --ar: 1.3333;
    --st-share-max: min(72vh, 680px);
    min-width: 0;
}
.st-compare {
    width: min(100%, calc(var(--st-share-max, min(72vh, 680px)) * var(--ar)));
}
/* [c228] */
.st-share-stage .st-compare { --ar: inherit; }
.st-share-stage .st-disclaimer {
    width: min(100%, calc(var(--st-share-max, min(72vh, 680px)) * var(--ar)));
    max-width: none;
    margin: 10px auto 0;
}
/* [c229] */
.st-cmp-badge-after { right: 60px; }
.st-share-side { text-align: left; max-width: 640px; margin: 0 auto; width: 100%; }
.st-share-side .st-share-actions { margin: 0 0 10px; justify-content: stretch; }
.st-share-side .st-share-actions .st-btn { width: 100%; }
/* [c266] */
.st-share-side .st-share-pin { margin: 0 0 18px; }
.st-share-side .st-share-products { margin: 0; max-width: none; }
.st-share-side .st-share-note { text-align: left; margin-top: 16px; }
@media (min-width: 1020px) {
    .st-share-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 30px;
        align-items: start;
    }
    .st-share-side { margin: 0; max-width: none; }
    /* [c230] */
    .st-share-stage { --st-share-max: min(calc(100vh - 250px), 800px); }
}

/* [c231] */
.st-kiosk-unavail-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 3vh; }
.st-kiosk-unavail-brand img { height: 56px; width: auto; }

/* [c232] */
.st-checkout-summary {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    background: var(--st-surface);
    border: 1.5px dashed var(--st-border);
    border-radius: var(--st-radius-md);
}
.st-checkout-summary .st-pack-count { gap: 8px; }
.st-checkout-summary .st-pack-cube { width: 28px; height: 28px; }
.st-checkout-summary .st-pack-n { font-size: 1.3rem; font-weight: 700; }
.st-checkout-summary-label { font-size: 0.86rem; color: var(--st-text-soft); }
.st-checkout-summary-price { font-size: 1.1rem; font-weight: 700; }
.st-checkout-mount { min-height: 220px; margin-bottom: 14px; }
.st-checkout-loading {
    display: flex; align-items: center; justify-content: center;
    min-height: 180px;
    color: var(--st-text-faint);
    font-size: 0.9rem;
}
.st-checkout-pay { position: relative; }
.st-checkout-pay .st-spin {
    width: 17px; height: 17px;
    /* [c284] */
    border: 2.5px solid color-mix(in srgb, var(--st-accent-contrast) 45%, transparent);
    border-top-color: var(--st-accent-contrast);
    border-radius: 50%;
    animation: st-spin 0.8s linear infinite;
    margin-left: 9px;
}

/* [c233] */

/* [c234] */
.st-pack--t2 {
    background: var(--st-surface);
    background: linear-gradient(160deg, var(--st-surface) 8%, var(--st-accent-soft) 100%);
    border-color: var(--st-accent);
}
.st-pack--t3 {
    background: var(--st-accent);
    background: linear-gradient(160deg,
        color-mix(in srgb, var(--st-accent) 72%, #6a6a6a) 0%,
        var(--st-accent) 78%);
    border-color: var(--st-accent);
    color: var(--st-accent-contrast);
}
.st-pack--t3 .st-pack-price { color: var(--st-accent-contrast); opacity: 0.85; }
/* [c267] */
.st-pack--t3 .st-pack-cur { opacity: 0.9; }
@media (hover: hover) {
    .st-pack--t3:hover { filter: brightness(1.12); }
}

/* [c235] */
.st-share-cta-title {
    font-family: var(--st-font-heading);
    font-size: clamp(1.15rem, 2.4vw, 1.42rem);
    margin: 0 0 12px;
    line-height: 1.25;
}
.st-share-meta {
    color: var(--st-text-faint);
    font-size: 0.78rem;
    line-height: 1.6;
    margin-top: 16px;
}
.st-share-meta a { color: inherit; text-decoration: none; }
.st-share-meta a:hover { text-decoration: underline; }

/* [c236] */
.st-setting-danger { border-color: rgba(214, 69, 69, 0.45); }
.st-setting-danger .st-delete-hint { margin: 0 0 12px; }

/* [c237] */
.st-result-frame.st-noanim { animation: none; }

/* [c238] */

/* [c239] */
.st-wizard { margin: 2px 0 20px; }
.st-wizard-track {
    height: 4px;
    border-radius: 999px;
    background: var(--st-surface-2);
    border: 1px solid var(--st-border);
    position: relative;
    top: 15px;
    z-index: 0;
}
.st-wizard-fill {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: var(--st-accent);
    transition: width var(--st-dur) var(--st-ease);
}
.st-wizard-steps {
    display: flex;
    justify-content: space-between;
}
.st-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1 1 0;
    min-width: 0;
    position: relative;   /* [c240] */
    z-index: 1;
}
.st-wizard-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--st-surface);
    border: 2px solid var(--st-border);
    color: var(--st-text-faint);
    transition: background var(--st-dur-fast) var(--st-ease),
        border-color var(--st-dur-fast) var(--st-ease),
        color var(--st-dur-fast) var(--st-ease);
}
.st-wizard-lbl {
    font-size: 0.72rem;
    color: var(--st-text-faint);
    text-align: center;
    line-height: 1.2;
    transition: color var(--st-dur-fast) var(--st-ease);
}
.st-wizard-step.is-active .st-wizard-dot,
.st-wizard-step.is-done .st-wizard-dot {
    background: var(--st-accent);
    border-color: var(--st-accent);
    color: var(--st-accent-contrast);
}
.st-wizard-step.is-active .st-wizard-lbl { color: var(--st-text); font-weight: 600; }
.st-wizard-step.is-done .st-wizard-lbl { color: var(--st-text-soft); }

.st-wiz-step { animation: st-fade-up var(--st-dur) var(--st-ease); }
/* [c241] */
.st-wiz-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 18px;
}
.st-wiz-back {
    align-self: center;
    min-height: 40px;
    padding: 6px 22px;
}

/* [c242] */
/* [c268] */
.st-upload-alts {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
}
.st-upload-alts .st-btn {
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 0;
}
@media (max-width: 480px) {
    .st-upload-alts { gap: 8px; }
    .st-upload-alts .st-btn { padding: 10px 12px; font-size: 0.88rem; }
}
/* [c243] */
.st-dialog-photos {
    width: min(860px, 100%);
    max-width: 860px;
}
.st-dialog-photos .st-dialog-body {
    max-height: min(72vh, 640px);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.st-saved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 6px;
}
@media (min-width: 700px) {
    .st-dialog-photos .st-saved-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 16px;
    }
}
.st-saved-tile {
    position: relative;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-md);
    overflow: hidden;
    padding: 0;
    background: var(--st-surface);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: border-color var(--st-dur-fast) var(--st-ease),
        transform var(--st-dur-fast) var(--st-ease),
        box-shadow var(--st-dur-fast) var(--st-ease);
}
.st-saved-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (hover: hover) {
    .st-saved-tile:hover {
        border-color: var(--st-accent);
        transform: translateY(-2px);
        box-shadow: var(--st-shadow-sm);
    }
}
.st-saved-tile:active { transform: scale(0.98); }
.st-saved-date {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 8px 6px;
    font-size: 0.7rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(15, 14, 12, 0.72));
    pointer-events: none;
}
.st-saved-empty {
    color: var(--st-text-faint);
    text-align: center;
    padding: 22px 8px;
}
.st-saved-tile.busy { opacity: 0.55; pointer-events: none; }

/* [c244] */
.st-icon-btn[data-close] {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
    line-height: 1;
}

/* [c245] */
@media (min-width: 861px) {
    #step-collections .st-collections {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 22px;
        max-width: 1160px;
    }
    #step-collections .st-collection-name {
        font-size: 0.98rem;
        margin-top: 10px;
    }
    #step-collections .st-collection-upload .st-collection-upicon svg {
        width: 58px;
        height: 58px;
    }
}

/* [c246] */
@media (min-width: 861px) {
    .st-landing-split.st-cols-one:not(.st-split-on) { justify-content: flex-start; }
    .st-landing-split.st-cols-one > #step-samples { padding-top: 4vh; }
}
@media (min-width: 1200px) {
    .st-landing-split.st-split-on.st-cols-one > .st-step { align-items: flex-start; }
}

/* [c247] */
.st-collection-date { font-style: italic; font-weight: 400; color: var(--st-text-soft); }

/* [c248] */
.st-share-all { margin-bottom: 14px; }

/* [c249] */
.st-insight { display: grid; margin: 0 0 16px; }
.st-insight[hidden] { display: none; }
/* [c250] */
.st-insight-wait,
.st-insight-reveal { grid-area: 1 / 1; }
.st-insight-wait {
    display: inline-flex; align-items: center; gap: 10px;
    align-self: start; justify-self: start;
    min-height: 24px;
    color: var(--st-text-soft);
    font-size: 0.9rem; font-style: italic; letter-spacing: 0.01em;
    transition: opacity 0.26s ease, transform 0.26s ease;
}
.st-insight-wait[hidden] { display: none; }
.st-insight-wait.is-out { opacity: 0; transform: translateY(-4px); pointer-events: none; }
.st-insight-ring {
    position: relative; flex-shrink: 0;
    width: 18px; height: 18px; border-radius: 50%;
    background: conic-gradient(from 0deg, var(--st-accent) 0 30%, transparent 30% 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.6px), #000 calc(100% - 2px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 2.6px), #000 calc(100% - 2px));
    animation: st-insight-spin 1.15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.st-insight-ring::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--st-border);
}
.st-insight-label {
    background: linear-gradient(90deg,
        var(--st-text-soft) 0%, var(--st-text-soft) 42%,
        var(--st-text) 50%,
        var(--st-text-soft) 58%, var(--st-text-soft) 100%);
    background-size: 240% 100%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    animation: st-insight-shimmer 2.6s ease-in-out infinite;
}
@keyframes st-insight-spin { to { transform: rotate(360deg); } }
@keyframes st-insight-shimmer {
    0%   { background-position: 130% 0; }
    100% { background-position: -130% 0; }
}
.st-insight-reveal {
    display: grid; grid-template-rows: 0fr;
    opacity: 0; transform: translateY(-6px);
    transition: grid-template-rows 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.45s ease 0.1s,
                transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.st-insight-reveal > * { min-height: 0; overflow: hidden; }
.st-insight.is-on .st-insight-reveal { grid-template-rows: 1fr; opacity: 1; transform: none; }
.st-insight.st-noanim .st-insight-reveal,
.st-insight.st-noanim .st-insight-wait { transition: none; }
.st-insight-text {
    margin: 0; padding: 0 0 2px;
    font-style: italic; font-weight: 400;
    color: var(--st-text-soft);
    font-size: 0.95rem; line-height: 1.6; letter-spacing: 0.01em;
}
.st-share-side .st-insight { margin: 0 0 18px; }
