/* /go.fabri.cc css */

/* =========================================================
   THEME TOKENS
   ========================================================= */

:root,
html[data-theme="light"] {
    color-scheme: light;

    --themeHeaders: "Roboto Slab", serif;
    --themeBody: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    --themeH2: "Roboto Slab", serif;
    --themeFontFam: "Roboto Slab", serif;
    
    --lynx-page-bg: #edf2f1;
    --bg-overlay: rgba(232, 242, 243, .55);

    --lynx-surface: rgba(255, 255, 255, .86);
    --lynx-surface-strong: #ffffff;
    --lynx-surface-soft: rgba(255, 255, 255, .62);
    --lynx-surface-muted: #eef4f3;

    --lynx-text: #172426;
    --lynx-text-soft: #556668;
    --lynx-text-muted: #7b898b;

    --lynx-accent: #3e8993;
    --lynx-accent-strong: #1d6f7a;
    --lynx-accent-soft: #dceced;

    --lynx-border: rgba(31, 72, 76, .14);
    --lynx-border-strong: rgba(31, 72, 76, .24);

    --lynx-danger: #984b4b;
    --lynx-danger-soft: #f7e8e7;

    --lynx-shadow:
        0 18px 45px rgba(36, 58, 60, .14);

    --lynx-shadow-soft:
        0 7px 22px rgba(36, 58, 60, .08);

    --lynx-input-bg: rgba(255, 255, 255, .96);
    --lynx-button-bg: #edf4f3;
    --lynx-button-text: #315e64;

    --lynx-primary-bg: #172426;
    --lynx-primary-text: #ffffff;

    --lynx-focus:
        0 0 0 3px rgba(62, 137, 147, .22);
        
    --themeClckBg:#fff;
    --themeClckClr:#000;
    --themeClckBg-hover:#fff;
    --themeClckClr-hover:#000;
    
    --modalOpenHL: #dee9e3;
    --viewsHoldBg: #e8f2f6c2;
    
    --localBdropBg: url('https://go.fabri.cc/images/fabric-portland-lynx-link-manager.jpg');
}

html[data-theme="dark"] {
    color-scheme: dark;
    
    --lynx-page-bg: #111719;
    --bg-overlay: rgba(8, 14, 16, .66);

    --lynx-surface: rgba(25, 33, 36, .91);
    --lynx-surface-strong: #1e282b;
    --lynx-surface-soft: rgba(35, 46, 49, .84);
    --lynx-surface-muted: #253033;

    --lynx-text: #f2f5f4;
    --lynx-text-soft: #b8c5c6;
    --lynx-text-muted: #88999b;

    --lynx-accent: #80c4cc;
    --lynx-accent-strong: #a4dde3;
    --lynx-accent-soft: rgba(91, 170, 181, .18);

    --lynx-border: rgba(220, 239, 240, .12);
    --lynx-border-strong: rgba(220, 239, 240, .23);

    --lynx-danger: #f0a4a0;
    --lynx-danger-soft: rgba(157, 70, 67, .22);

    --lynx-shadow:
        0 20px 55px rgba(0, 0, 0, .42);

    --lynx-shadow-soft:
        0 8px 28px rgba(0, 0, 0, .25);

    --lynx-input-bg: rgba(10, 16, 18, .72);
    --lynx-button-bg: #2a373a;
    --lynx-button-text: #dce8e8;

    --lynx-primary-bg: #eef5f4;
    --lynx-primary-text: #152022;

    --lynx-focus:
        0 0 0 3px rgba(128, 196, 204, .25);
        
    --themeClckBg:#fff;
    --themeClckClr:#000;
    --themeClckBg-hover:#fff;
    --themeClckClr-hover:#000;
    --modalOpenHL: #dee9e3;
    --viewsHoldBg: #e8f2f6c2;
}

html[data-theme="classic"] {
    color-scheme: light;

    --lynx-page-bg: #dfeceb;
    --bg-overlay: rgba(226, 239, 235, .48);

    --lynx-surface: rgba(249, 250, 239, .91);
    --lynx-surface-strong: #fbf8e8;
    --lynx-surface-soft: rgba(246, 241, 216, .78);
    --lynx-surface-muted: #e7ead2;

    --lynx-text: #39494a;
    --lynx-text-soft: #637071;
    --lynx-text-muted: #7d8986;

    --lynx-accent: #438f98;
    --lynx-accent-strong: #1f7384;
    --lynx-accent-soft: #d6e8e1;

    --lynx-border: rgba(67, 117, 114, .22);
    --lynx-border-strong: rgba(67, 117, 114, .38);

    --lynx-danger: #973f36;
    --lynx-danger-soft: #f3ded4;

    --lynx-shadow:
        9px 11px 0 rgba(63, 96, 91, .13);

    --lynx-shadow-soft:
        4px 5px 0 rgba(63, 96, 91, .10);

    --lynx-input-bg: #f9f7e9;
    --lynx-button-bg: #dce8df;
    --lynx-button-text: #365c5f;

    --lynx-primary-bg: #4e8e93;
    --lynx-primary-text: #fffdf0;

    --lynx-focus:
        0 0 0 3px rgba(67, 143, 152, .25);
        
    --themeClckBg:#fff;
    --themeClckClr:#000;
    --themeClckBg-hover:#fff;
    --themeClckClr-hover:#000;
    --modalOpenHL: #dee9e3;
    --topMenuInt: rgb(244, 245, 242);
    --viewsHoldBg: #e8f2f6c2;
}

body.fabricSmallApp {
    --fabric-page-bg: var(--lynx-page-bg);
    --fabric-surface: var(--lynx-surface);
    --fabric-surface-strong: var(--lynx-surface-strong);
    --fabric-surface-soft: var(--lynx-surface-soft);
    --fabric-text: var(--lynx-text);
    --fabric-border: var(--lynx-border);
    --fabric-border-strong: var(--lynx-border-strong);
    --fabric-shadow: var(--lynx-shadow);
    --fabric-shadow-soft: var(--lynx-shadow-soft);
}

body.fabricSmallApp h1 { font-weight: 200; }


/* =========================================================
   MARKETING SHELL
   ========================================================= */

/* Classic should feel intentionally tactile. */
html[data-theme="classic"] .lynxManagerCard,
html[data-theme="classic"] .hIwSlide,
html[data-theme="classic"] .marketingPlanCard,
html[data-theme="classic"] .appUseCase {
    border-radius: 5px !important;
}

html[data-theme="classic"] button,
html[data-theme="classic"] input,
html[data-theme="classic"] select {
    border-radius: 4px;
}

html[data-theme="classic"] .fabricToolbarTrigger,
.fabricToolbarTrigger {
    border-radius: 0 16px 16px 0 !important;
    background: #828ca573 !important;
}

.lynxHeroCard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.lynxHeroRow {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.55);
}

.lynxHeroRow--url {
    height: 36px;
    width: 100%;
}

.lynxHeroRow--url p,
.lynxHeroRow--short p {
    color: var(--lynx-accent-strong) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    display: inline-block;
    margin: 0 18px;
    width: 100%;
    text-align: left;
    transform: translateY(-4px);
    font-style: italic;
}

.lynxHeroRow--short p {
    color: var(--lynx-accent) !important;;
    font-weight: 700 !important;;
}

.lynxHeroRow--short {
    height: 36px;
    width: 72%;
    background: rgba(0,0,0,.08);
}

.lynxHeroLastHd {
    flex-direction: row;
    display: flex;
    gap: 20px;
}

.lynxHeroQr {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.08);
    display: grid;
    place-items: center;
    padding:8px;
}

.lynxHeroQrInner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
}

.lynxHeroPills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.lynxHeroPills span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.08);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #222;
}

.marketingHeroArt {
    position: relative;
    min-height: 340px;
}

.heroArtCard {
    position: absolute;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, var(--glass-strong), var(--glass));
}

.heroArtCard--back {
    inset: 28px 10px 12px 90px;
    opacity: .55;
    transform: rotate(7deg);
}

.heroArtCard--front {
    inset: 0 32px 28px 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.heroArtTop {
    width: 48%;
    height: 18px;
    border-radius: 999px;
    background: var(--glass-soft);
}

.heroArtLogo {
    width: 34%;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    opacity: .9;
}

.heroArtLink {
    height: 52px;
    border-radius: 16px;
    background: var(--glass-soft);
    border: 1px solid var(--border-soft);
}

.heroArtLink--short {
    width: 72%;
}

.appModal,
.marketingHero,
.marketingBenefits,
.marketingPlans,
.appUseCases,
.marketingAuth {
    color: var(--lynx-text);
}

.appUseCases {
    border-radius: 24px;
    padding: 26px;
}

.appUseCaseGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.appUseCase {
    border-radius: 18px;
    padding: 18px;
}

.appUseCase h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #111;
}

.appUseCase p {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 400;
    color: rgba(0,0,0,.72);
}



/* =========================
   YOUR LYNX MANAGER
   ========================= */

.builderPanel {
    padding: 10px 27px;
    margin: 0 auto;
    text-align: left;
}

.builderHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.builderHeader h2 {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0 0 0;
    border: 0;
    font-weight: 300;
    font-size: 27px;
    letter-spacing: 1px;
}

.builderHeader h2,
html[data-theme="light"] .builderHeader h2 {
    background: #ffffffcf;
    padding: 9px 28px;
    border-radius: 30px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 10px -7px;
}

html[data-theme="dark"] .builderHeader h2 {
    background: #1c20264a;
    box-shadow: 5px 5px 10px -7px #453c66;
}







/********************************
 **  LIGHT AND DARK THEME UPDATES
 ********************************/
 















.conLinks a {
    background: var(--glass-strong);
    color: var(--text);
    border: 1px solid var(--border-soft);
    padding: 4px 7px;
    border-radius: 8px;
}

.mDash {
    background: currentColor;
    transform: translateY(-3px);
    margin: 0 1.5px;
    opacity: .6;
}

.brandized {
    display: inline-block !important;
    font-weight: 300;
    letter-spacing: 1px;
}

.tabPanel .brandized {
    font-size: 17px;
}

.builderHeader .brandized {
    font-size:28px;
}

#sideBtnBrands .brandized {
    color: var(--baseColor);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.brandized .accente {
    font-size: 16.5px;
    transform: translate(0px, 0.5px);
}

#brands-profile {
    margin-top: 17px;
    opacity: 0.9;
}


/* =========================
   FOR LYNX
   ========================= */

#view-one {
    gap: 20px;
    border: 1px solid var(--lynx-border);
    
    background:
        color-mix(
            in srgb,
            var(--lynx-surface) 94%,
            transparent
        );
        
    box-shadow:
        0 18px 46px rgba(18, 39, 42, .09);
    background: var(--glass);
    border-radius: 18px;
    padding: 20px 10px 30px;
    margin:0 7px 0 0;
}

#view-one h2 {
    font-family: var(--themeH2);
    margin: 0;
    text-align: left;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.1;
    font-size: 28px;
}

.sideNavBtn {
  background: var(--lynx-surface-soft) !important;
  color: var(--lynx-text-soft) !important;
  border: 1px solid var(--lynx-border) !important;
  box-shadow: var(--lynx-shadow-soft);
}



/* ---------------------------------------------------------
   RESULT
   --------------------------------------------------------- */

#qrCanvas {
    max-height:0;
    display: none;
    width: 132px !important;
    height: 132px !important;
    padding: 7px;
    border-radius: 10px;
    background: #fff;
    overflow:hidden;
    transition:max-height .2s ease;
    
}

#qrCanvas.openQRmat {
    display: block;
    max-height:300px;
}

#linkShortResultDiv {
    display: none;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 14px;
    align-items: center;
}

#result,
#linkShortQRholder {
    width:50%;
}
 
#result {
    display: none;

    padding: 16px;

    border:
        1px solid
        color-mix(
            in srgb,
            var(--accent) 25%,
            var(--lynx-border)
        );

    border-radius: 15px;
    color: var(--lynx-text);
    background:
        color-mix(
            in srgb,
            var(--accent) 7%,
            var(--lynx-surface)
        );
}

 #result strong {
    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
 
 #linkShortQRholder {
    display: grid;
    justify-items: center;
    gap: 9px;

    padding: 12px;

    border: 1px solid var(--lynx-border);
    border-radius: 15px;

    background: var(--lynx-surface);
}

.qrRenderShell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.qrClientLabel {
    margin: 0;
    text-align: center;
}









.brandized,
html[data-theme="light"] .brandized,
html[data-theme="dark"] .brandized,
html[data-theme="classic"] .brandized {
    color: var(--lynx-text) !important;
}

.accented {
    color: var(--lynx-accent) !important;
}





.linkShortDiv,
.qrGen,
.builderPanel,
#view-help {
    color: var(--lynx-text);
}

.optRow label,
.modePanel label,
.prefGroup label {
    color: var(--lynx-text-soft);
}

input,
select,
textarea {
    background: var(--lynx-input-bg) !important;
    color: var(--lynx-text) !important;
    border: 1px solid var(--lynx-border) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--lynx-text-muted);
    opacity: .85;
}

button,
.copy-btn,
.modeBtn,
.marketingBtn {
    border: 1px solid transparent;
    transition:
        transform .16s ease,
        background .16s ease,
        border-color .16s ease,
        color .16s ease,
        opacity .16s ease;
}

button:hover,
.copy-btn:hover,
.modeBtn:hover,
.marketingBtn:hover {
    transform: translateY(-1px);
}

.fabricToolbarTrigger:hover {
    transform: translateY(-50%);
}

.linkShortDiv {
    display: grid;

    grid-template-areas:
        "a a a a b b b c"
        "d e e e f f f f";

    gap: 12px;

    padding: 18px;

    border: 1px solid var(--lynx-border);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--lynx-surface) 94%,
                var(--accent) 6%
            ),
            var(--lynx-surface)
        );

    box-shadow:
        0 10px 28px rgba(18, 39, 42, .06);
}

.linkShortDiv .optRow {
    display: grid;
    gap: 6px;

    width: auto !important;
    min-width: 0 !important;
}

.linkShortDiv label {
    margin: 0 2px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.linkShortDiv input {
    width: 100%;
    min-width: 0;
    min-height: 45px;

    padding: 0 12px;

    border: 1px solid var(--lynx-border);
    border-radius: 11px;

    background:
        color-mix(
            in srgb,
            var(--panel-bg) 96%,
            transparent
        );

    color: var(--lynx-text);

    font: inherit;
    font-size: 14px;
    font-weight: 500;

    outline: none;

    transition:
        border-color .17s ease,
        box-shadow .17s ease,
        background-color .17s ease;
}

.linkShortDiv input:focus {
    border-color:
        color-mix(
            in srgb,
            var(--accent) 55%,
            var(--lynx-border)
        );

    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--accent) 12%,
            transparent
        );
}


body.fabricSmallApp .optRow,
body.fabricSmallApp .qrGen,
body.fabricSmallApp .linkShortDiv {
    width: 100%;
    min-width: 0;
    border-radius: 17px;
    background: #ffffff82;
    margin: 4px 0;
    border: 1px solid var(--btn-border);
    padding: 9px 15px;
}

body.fabricSmallApp .linkShortDiv {
    border: none;
    background: none;
}

body.fabricSmallApp .optRow label {
    font-variant: small-caps;
}

body.fabricSmallApp .optRow input,
body.fabricSmallApp .optRow select,
body.fabricSmallApp .qrGen input,
body.fabricSmallApp .lynxManagerToolbar input,
body.fabricSmallApp .lynxManagerToolbar select,
body.fabricSmallApp .lynxEditForm input {
    width: 100%;
    max-width: none;
    min-height: 22px;
    margin: 0;

    text-align: left;
    font-family: var(--font-ui, sans-serif);
    font-size: 16px;
    background: none !important;
    border: none !important;
}

body.fabricSmallApp .linkShortDiv button {
    margin: 6px 10px 20px;
}

body.fabricSmallApp .dipRow {
    max-height:0;
    padding:0;
    border:0;
    transition:max-height .2s ease;
    overflow-y:hidden;
}

body.fabricSmallApp .showOption {
    max-height: 60px;
    overflow-y: inherit;
    border: 1px solid var(--btn-border);
    padding: 9px 15px;
}

.copy-btn,
.modeBtn,
.coolerOpClick,
.marketingBtn--secondary {
    background: var(--lynx-button-bg) !important;
    color: var(--lynx-button-text) !important;
    border-color: var(--lynx-border) !important;
}

.copy-btn {
    min-height: 35px;

    padding: 0 11px;

    border: 1px solid var(--lynx-border);
    border-radius: 9px;

    background:
        color-mix(
            in srgb,
            var(--lynx-surface) 90%,
            transparent
        );

    color: var(--lynx-text);

    font-size: 10px;
    font-weight: 650;

    cursor: pointer;
}

.copy-btn:hover {
    border-color:
        color-mix(
            in srgb,
            var(--accent) 35%,
            var(--lynx-border)
        );

    color: var(--accent);
}

.modeBtn.active {
    background: var(--lynx-accent-soft) !important;
    color: var(--lynx-accent-strong) !important;
    border-color: var(--lynx-border-strong) !important;
}

#ls-result,
#qrcode,
#ls-qr-wrap {
    background: var(--lynx-surface-soft);
    color: var(--lynx-text);
    border: 1px solid var(--lynx-border);
    border-radius: 14px;
}

#shortUrl,
#ls-short {
    color: var(--lynx-accent-strong);
}

#shortUrl {
    margin: 0 0 11px;

    color: var(--accent);

    font-family: "Roboto Slab", serif;
    font-size: 18px;
    font-weight: 450;

    overflow-wrap: anywhere;
}

/* ---------------------------------------------------------
   LYNX SHORTENER FORM
   --------------------------------------------------------- */

#shortenUrlInput {
    grid-area:a;
}

#custSlugInput {
    grid-area: b;
}


/* advanced options */

#expiresInput,
#custPassInput {
    position: relative;

    background:
        color-mix(
            in srgb,
            var(--accent) 4%,
            transparent
        );
        
    grid-template-columns: calc(100% - 50px) 50px;
}

#expiresInput { grid-area: e; }
#custPassInput { grid-area: f; }

#expiresInput::before,
#custPassInput::before {
    content: "premium";

    position: absolute;
    top: 8px;
    right: 9px;

    padding: 3px 6px;

    border-radius: 999px;

    background:
        color-mix(
            in srgb,
            var(--accent) 10%,
            transparent
        );

    color: var(--accent);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.linkShortDiv input:disabled {
    cursor: not-allowed;

    opacity: .58;

    background:
        color-mix(
            in srgb,
            var(--lynx-surface) 86%,
            transparent
        );
}


/* ---------------------------------------------------------
   PRIMARY ACTION
   --------------------------------------------------------- */

#shortenBtn {
    grid-area: c;

    min-height: 22px;
    max-height:30px;
    
    margin: 10px 0 0;
    padding: 0 20px;

    border: 0;
    border-radius: 12px;

    background: var(--accent);
    color: #fff;

    font: inherit;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        color-mix(
            in srgb,
            var(--accent) 24%,
            transparent
        );

    transition:
        transform .17s ease,
        box-shadow .17s ease,
        opacity .17s ease;
}

#shortenBtn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 11px 24px
        color-mix(
            in srgb,
            var(--accent) 30%,
            transparent
        );
}

#shortenBtn:active {
    transform: translateY(0);
}

#custOptBtn {
    grid-area: d;
    background: var(--invert);
    cursor:pointer;
    border-radius: 12px;
    font-weight: 400;
    max-height: 22px;
    font-size: 13px;
    margin: 6px 10px 20px 0;
}

.optsOpen,
#custOptBtn.optsROpen .optsClosed { display:none; }

#custOptBtn.optsROpen .optsOpen, 
.optsClosed { display:block; }


/* =========================================================
   LINK MANAGER
   ========================================================= */

body.fabricSmallApp #lynxLinkManager{
    width:100%;
    box-sizing:border-box;
    text-align:left;
    pointer-events:all
}

body.fabricSmallApp .lynxManagerToolbar {
    display:grid;
    gap:10px;
    align-items:end;
    margin-bottom:15px;
    grid-template-columns:
        minmax(220px, 1fr)
        minmax(110px, .35fr)
        minmax(120px, .4fr)
        auto;
}

.lynxManagerToolbar label,
.lynxEditForm label {
    display:grid;
    gap:5px;
    font-size:12px;
    font-weight:500;
}

.lynxManagerToolbar input,
.lynxManagerToolbar select,
.lynxEditForm input {
    width:100%;
    min-height:38px;
    box-sizing:border-box;
    border:1px solid;
    border-color: var(--lynx-border) !important;
    border-radius:6px;
    background: var(--lynx-input-bg) !important;
    padding:8px 10px;
    color: var(--lynx-text) !important;
    font:inherit;
    font-weight:400;
}

.lynxEditActions{
    display:flex;
    gap:8px;
}

.lynxManagerToolbar button,
.lynxManagerActions button,
.lynxEditActions button {
    min-height:38px;
    border:0;
    border-radius:6px;
    padding:8px 12px;
    cursor:pointer;
    font:inherit;
}

.lynxManagerToolbar button:disabled,
.lynxManagerActions button:disabled,
.lynxEditActions button:disabled,
.lynxMigrationNotice button:disabled {
    cursor: wait;
    opacity: .58;
}

.lynxManagerActions button {
    background:#edf3f2;
    color:#42666b;
}

.lynxManagerActions button:last-child{ margin-left:auto; }

.lynxManagerSummary {
    font-size:13px;
}

.lynxManagerGrid {
    display:grid;
    gap:12px;
}

.lynxManagerCard {
    border:1px solid #dce4e3;
     border-radius: 16px;
    background:rgba(255,255,255,.9);
    padding:15px;
    box-shadow:0 5px 18px rgba(42,66,68,.06);
}

.lynxManagerCardHead {
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:flex-start;
}

.lynxManagerCard h3 {
    margin:2px 0 8px;
    color: var(--lynx-text) !important;
    font-size:18px;
}

.lynxManagerEyebrow {
    margin:0; 
    text-transform:uppercase;
    font-size:10px;
    letter-spacing:.12em;
}

.lynxManagerShort {
    display:inline-block;
    font-weight:600;
    margin-bottom:7px;
}

.lynxManagerDestination {
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-size:13px;
    font-weight:400;
    max-width: 100%;
}

.lynxManagerMeta,
.lynxManagerActions {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.lynxManagerMeta {
    font-size:12px;
    margin:12px 0;
}

.lynxManagerEmpty {
    padding:35px 15px;
    border:1px dashed;
    border-radius:10px;
    text-align:center;
}

.lynxEditForm{
    display:grid;
    gap:12px;
}

.lynxCheckLabel{
    grid-template-columns:auto 1fr !important;
    align-items:center;
}

.lynxCheckLabel input{
    width:auto;
    min-height:0;
}

.lynxMigrationNotice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid rgba(68, 139, 148, .28);
    border-radius: 10px;
    background: rgba(231, 242, 241, .92);
    color: #42666b;
}

.lynxMigrationNotice strong {
    display: block;
    margin-bottom: 4px;
}

.lynxMigrationNotice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

.lynxMigrationNotice button,
.lynxManagerError button {
    flex: 0 0 auto;
    min-height: 38px;
    border: 0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font: inherit;
    background: #42666b;
    color: #fff;
}

.lynxManagerError {
    border-color: rgba(154, 76, 76, .32);
    background: rgba(255, 245, 245, .92);
}

.lynxManagerError strong {
    display: block;
    margin-bottom: 6px;
    color: #8d4141;
}

.lynxManagerError p {
    margin: 0 0 14px;
    line-height: 1.55;
}

html[data-theme="dark"] .lynxMigrationNotice {
    border-color: rgba(154, 203, 208, .24);
    background: rgba(34, 48, 51, .94);
    color: rgba(255, 255, 255, .84);
}

html[data-theme="dark"] .lynxManagerError {
    border-color: rgba(232, 142, 142, .3);
    background: rgba(72, 38, 38, .92);
    color: rgba(255, 255, 255, .82);
}

html[data-theme="dark"] .lynxManagerError strong {
    color: #ffc1c1;
}

.lynxManagerToolbar label,
.lynxEditForm label,
.lynxManagerSummary,
.lynxManagerMeta,
.lynxManagerDestination {
    color: var(--lynx-text-soft) !important;
}

.lynxManagerCard,
.lynxManagerEmpty,
.lynxManagerError,
.lynxLegacyNotice {
    background: var(--lynx-surface-strong) !important;
    color: var(--lynx-text) !important;
    border-color: var(--lynx-border) !important;
    box-shadow: var(--lynx-shadow-soft) !important;
}

.lynxManagerEyebrow,
.lynxManagerShort {
    color: var(--lynx-accent-strong) !important;
}

.lynxManagerActions button,
.lynxEditActions button,
#lynxManagerRefresh {
    background: var(--lynx-button-bg) !important;
    color: var(--lynx-button-text) !important;
    border: 1px solid var(--lynx-border) !important;
}

.lynxManagerActions button[data-action="delete"] {
    color: var(--lynx-danger) !important;
    background: var(--lynx-danger-soft) !important;
}

.lynxManagerCard[data-status="disabled"] {
    opacity: .74;
}

.lynxManagerCard[data-status="expired"] {
    border-style: dashed !important;
}



/* =========================================================
   LYNX HELP SLIDER ----- SLIDESSSS
   ========================================================= */


.helpVisual {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    width: 100%;
    min-height: 185px;

    margin-top: auto;
    padding: 18px;

    border:
        1px solid
        color-mix(
            in srgb,
            var(--lynx-border) 80%,
            transparent
        );

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--lynx-surface) 92%,
                var(--accent) 8%
            ),
            color-mix(
                in srgb,
                var(--lynx-surface) 98%,
                transparent
            )
        );

    overflow: hidden;
}

.helpVisual::after {
    content: "";

    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--accent) 10%,
            transparent
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   SLIDE 1 — URL SHORTENER
   --------------------------------------------------------- */

.helpVisual--link {
    align-items: stretch;
}

.helpMiniWindow {
    position: relative;
    z-index: 1;

    display: grid;
    gap: 12px;

    width: 100%;
    padding: 14px;

    border: 1px solid var(--lynx-border);
    border-radius: 14px;

    background:
        color-mix(
            in srgb,
            var(--panel-bg) 94%,
            transparent
        );

    box-shadow:
        0 10px 26px rgba(20, 40, 42, .09);
}

.helpMiniWindowTop {
    display: flex;
    gap: 5px;
}

.helpMiniWindowTop span {
    width: 6px;
    height: 6px;
    border-radius: 50%;

    background: var(--muted);
    opacity: .35;
}

.helpMiniForm {
    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(90px, .8fr)
        auto;

    gap: 8px;
    align-items: end;
}

.helpField {
    display: grid;
    gap: 3px;

    min-width: 0;
    padding: 8px 10px;

    border: 1px solid var(--lynx-border);
    border-radius: 9px;

    background: var(--lynx-surface);
}

.helpField small {
    color: var(--muted);

    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.helpField strong {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--lynx-text);

    font-size: 10px;
    font-weight: 600;
}

.helpMiniButton {
    display: grid;
    place-items: center;

    min-height: 40px;
    padding: 0 12px;

    border-radius: 9px;

    background: var(--accent);
    color: #fff;

    font-size: 10px;
    font-weight: 700;
    text-transform: lowercase;
}

.helpResult {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    padding: 9px 11px;

    border-radius: 9px;

    background:
        color-mix(
            in srgb,
            var(--accent) 10%,
            transparent
        );
}

.helpResult span {
    color: var(--muted);
    font-size: 9px;
}

.helpResult strong {
    color: var(--accent);
    font-size: 11px;
}


/* ---------------------------------------------------------
   SLIDE 2 — SLUGS
   --------------------------------------------------------- */

.helpVisual--slug {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.helpSlugDemo {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;

    overflow: hidden;

    width: 100%;

    border: 1px solid var(--lynx-border);
    border-radius: 12px;

    background: var(--lynx-surface);

    box-shadow:
        0 8px 20px rgba(20, 40, 42, .08);
}

.helpSlugPrefix,
.helpSlugValue {
    padding: 13px 14px;

    font-size: 12px;
    font-weight: 600;
}

.helpSlugPrefix {
    color: var(--muted);

    border-right:
        1px solid var(--lynx-border);
}

.helpSlugValue {
    flex: 1;

    color: var(--accent);
}

.helpSlugSuggestions {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.helpSlugSuggestions span {
    padding: 7px 11px;

    border: 1px solid var(--lynx-border);
    border-radius: 999px;

    background:
        color-mix(
            in srgb,
            var(--lynx-surface) 90%,
            transparent
        );

    color: var(--lynx-text);

    font-size: 9px;
    font-weight: 650;
}

.helpSlugNote {
    position: relative;
    z-index: 1;

    color: var(--muted);

    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   SLIDE 3 — QR
   --------------------------------------------------------- */

.helpVisual--qr {
    justify-content: center;
}

.helpQrCard {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 14px;

    border: 1px solid var(--lynx-border);
    border-radius: 15px;

    background: var(--lynx-surface);

    box-shadow:
        0 10px 26px rgba(20, 40, 42, .1);
}

.helpQr {
    position: relative;

    width: 116px;
    height: 116px;

    flex: 0 0 100px;

    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #111 12%,
            transparent 12%,
            transparent 25%,
            #111 25%,
            #111 38%,
            transparent 38%,
            transparent 50%,
            #111 50%,
            #111 63%,
            transparent 63%,
            transparent 75%,
            #111 75%,
            #111 88%,
            transparent 88%
        ),
        linear-gradient(
            #111 12%,
            transparent 12%,
            transparent 25%,
            #111 25%,
            #111 38%,
            transparent 38%,
            transparent 50%,
            #111 50%,
            #111 63%,
            transparent 63%,
            transparent 75%,
            #111 75%,
            #111 88%,
            transparent 88%
        );

    background-size: 14px 14px;
    
    background:
        linear-gradient(90deg, #000 10%, transparent 10%),
        linear-gradient(#000 10%, transparent 10%);
    background-size: 12px 12px;
    
    background-color: #fff;
}

.helpQrFinder {
    position: absolute;

    width: 24px;
    height: 24px;

    border: 5px solid #111;

    background: #fff;
}

.helpQrFinder--one {
    top: 6px;
    left: 6px;
}

.helpQrFinder--two {
    top: 6px;
    right: 6px;
}

.helpQrFinder--three {
    bottom: 6px;
    left: 6px;
}

.helpQrCopy {
    display: grid;
    gap: 5px;

    min-width: 120px;
}

.helpQrCopy strong {
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    font-weight: 400;
}

.helpQrCopy span {
    color: var(--muted);
    font-size: 9px;
}

.helpQrOptions {
    position: relative;
    z-index: 1;

    display: grid;
    gap: 7px;
}

.helpQrOptions span {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 9px;

    border-radius: 9px;

    background:
        color-mix(
            in srgb,
            var(--accent) 9%,
            transparent
        );

    color: var(--lynx-text);

    font-size: 9px;
    font-weight: 600;
}

.helpQrOptions i {
    color: var(--accent);
}


/* ---------------------------------------------------------
   SLIDE 4 — CONTROLS
   --------------------------------------------------------- */

.helpVisual--control {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    align-content: center;
}

.helpControlCard {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    gap: 10px;
    align-items: center;

    padding: 13px;

    border: 1px solid var(--lynx-border);
    border-radius: 13px;

    background: var(--lynx-surface);
}

.helpControlIcon {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background:
        color-mix(
            in srgb,
            var(--accent) 10%,
            transparent
        );

    color: var(--accent);
}

.helpControlCard > div {
    display: grid;
    gap: 2px;
}

.helpControlCard small {
    color: var(--muted);

    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.helpControlCard strong {
    font-size: 11px;
}

.helpFakeToggle,
.custOptToggle {
    position: relative;

    width: 34px;
    height: 20px;

    border-radius: 999px !important;

    background:
        color-mix(
            in srgb,
            var(--muted) 15%,
            transparent
        );
}

.custOptToggle {
    margin: 6px 0 0 10px !important;
    min-height: 0 !important;
    padding: 0;
    border: 0;

    cursor: pointer;

    transition:
        background-color .18s ease,
        opacity .18s ease;
}

.helpFakeToggle span,
.custOptToggle span {
    position: absolute;
    top: 3px;
    left: 3px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 1px 3px rgba(0,0,0,.2);
}

.helpFakeToggle.is-on,
.custOptToggle.is-on {
    background: var(--accent);
}

.helpFakeToggle.is-on span,
.custOptToggle.is-on span {
    left: 17px;
}

.custOptToggle span {
    transition:
        left .18s ease;
}

.custOptToggle:disabled {
    cursor: not-allowed;
    opacity: .35;
}

.dipRow input.optionDisabled:not(:disabled) {
    opacity: .65;
}

.dipRow input.optionEnabled {
    opacity: 1;
}

.helpPremiumTag {
    position: relative;
    z-index: 1;

    grid-column: 1 / -1;

    display: inline-flex;
    justify-self: start;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    border-radius: 999px;

    background:
        color-mix(
            in srgb,
            var(--accent) 11%,
            transparent
        );

    color: var(--accent);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   SLIDE 5 — SAVED LINKS
   --------------------------------------------------------- */

.helpVisual--list {
    display: grid;
    align-content: center;
}

.helpListCard {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    gap: 10px;
    align-items: center;

    width: 100%;

    padding: 10px;

    border: 1px solid var(--lynx-border);
    border-radius: 11px;

    background: var(--lynx-surface);
}

.helpListCard--muted {
    opacity: .58;
}

.helpListIcon {
    display: grid;
    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    background:
        color-mix(
            in srgb,
            var(--accent) 10%,
            transparent
        );

    color: var(--accent);

    font-size: 10px;
}

.helpListCopy {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.helpListCopy strong {
    font-size: 10px;
}

.helpListCopy span {
    overflow: hidden;

    color: var(--muted);

    font-size: 8px;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.helpListActions {
    display: flex;
    gap: 5px;
}

.helpListActions i {
    display: grid;
    place-items: center;

    width: 25px;
    height: 25px;

    border: 1px solid var(--lynx-border);
    border-radius: 8px;

    color: var(--accent);

    font-size: 9px;
}

.helpListStatus {
    padding: 4px 7px;

    border-radius: 999px;

    background:
        color-mix(
            in srgb,
            var(--muted) 12%,
            transparent
        );

    color: var(--muted);

    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}



/* =========================================================
   MENUS + ALERTS -- LYNX SPECIFIC
   ========================================================= */

#menuDiv,
.subMenu {
    background: var(--lynx-surface-strong) !important;
    color: var(--lynx-text);
    border: 1px solid var(--lynx-border);
    box-shadow: var(--lynx-shadow);
}

.subMenu::before {
    border-top-color: var(--lynx-surface-strong) !important;
}



/* =========================================================
   LYNX — INTERIOR APP POLISH
   FINAL OVERRIDE LAYER
   ========================================================= */


/* =========================================================
   SHARED INTERIOR SURFACES
   ========================================================= */

body.fabricSmallApp #view-one,
body.fabricSmallApp #view-two .pageInt,
body.fabricSmallApp #view-three .builderPanel {
    width: 100%;
    max-width: 1120px;

    margin: 0 auto;
    padding: 28px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 22px;

    background:
        color-mix(
            in srgb,
            var(--lynx-surface) 96%,
            transparent
        );

    color: var(--lynx-text);

    box-shadow:
        var(--lynx-shadow-soft);
}


body.fabricSmallApp #view-one {
    margin-left: auto;
    margin-right: auto;
}


body.fabricSmallApp #view-one .builderEyebrow,
body.fabricSmallApp #view-three .builderEyebrow {
    margin: 0 0 5px;

    color: var(--lynx-accent-strong);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}


body.fabricSmallApp #view-one .builderIntro {
    max-width: 600px;

    margin: 0 0 8px;

    color: var(--lynx-text-soft);

    font-size: 14px;
    line-height: 1.55;
}


body.fabricSmallApp #view-one > h2,
body.fabricSmallApp #view-three .builderHeader h2 {
    margin: 0 0 25px;

    color: var(--lynx-text);

    font-family: var(--themeH2);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: .02em;
}


/* =========================================================
   VIEW ONE — PRIMARY SHORTENER
   ========================================================= */

body.fabricSmallApp #view-one .linkShortDiv {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(190px, .65fr)
        112px;

    grid-template-areas:
        "url slug action"
        "options options options"
        "expire pass pass";

    gap: 12px;

    width: 100%;

    margin: 0;
    padding: 20px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--lynx-accent-soft) 18%,
                var(--lynx-surface-strong)
            ),
            var(--lynx-surface-strong)
        ) !important;

    box-shadow:
        0 12px 28px
        rgba(20, 45, 48, .055);
}


/* ---------- MAIN ROWS ---------- */

body.fabricSmallApp #shortenUrlInput {
    grid-area: url;
}

body.fabricSmallApp #custSlugInput {
    grid-area: slug;
}

body.fabricSmallApp #expiresInput {
    grid-area: expire;
}

body.fabricSmallApp #custPassInput {
    grid-area: pass;
}


/* Undo the old generic optRow card styling */

body.fabricSmallApp #view-one .linkShortDiv .optRow {
    display: grid;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    border: 0;

    border-radius: 0;

    background: transparent;
}


/* ---------- LABELS ---------- */

body.fabricSmallApp #view-one .linkShortDiv label {
    display: block;

    margin: 0 0 7px;

    color: var(--lynx-text-soft);

    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-variant: normal;
}


/* ---------- INPUTS ---------- */

body.fabricSmallApp #view-one .linkShortDiv input {
    width: 100%;
    min-width: 0;

    min-height: 48px;

    margin: 0;
    padding: 0 13px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 11px !important;

    outline: none;

    background:
        var(--lynx-input-bg) !important;

    color:
        var(--lynx-text) !important;

    font-family:
        var(--themeBody);

    font-size: 14px;
    font-weight: 450;

    transition:
        border-color .16s ease,
        box-shadow .16s ease,
        background-color .16s ease;
}


body.fabricSmallApp #view-one .linkShortDiv input:focus {
    border-color:
        var(--lynx-accent) !important;

    box-shadow:
        var(--lynx-focus);
}


body.fabricSmallApp #view-one .linkShortDiv input:disabled {
    cursor: not-allowed;

    opacity: .55;

    background:
        var(--lynx-surface-muted) !important;
}


/* =========================================================
   PRIMARY SHORTEN BUTTON
   ========================================================= */

body.fabricSmallApp #view-one #shortenBtn {
    grid-area: action;

    align-self: end;

    width: 100%;
    min-height: 48px;
    max-height: none;

    margin: 0;
    padding: 0 15px;

    border: 0 !important;
    border-radius: 11px;

    background:
        var(--lynx-accent) !important;

    color: #fff !important;

    font-family: var(--themeBody);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;

    cursor: pointer;

    box-shadow:
        0 10px 20px
        color-mix(
            in srgb,
            var(--lynx-accent) 26%,
            transparent
        );
}


body.fabricSmallApp #view-one #shortenBtn:hover {
    transform: translateY(-1px);

    background:
        var(--lynx-accent-strong) !important;
}


body.fabricSmallApp #view-one #shortenBtn:active {
    transform: translateY(0);
}


/* =========================================================
   EXTRA OPTIONS BUTTON
   ========================================================= */

body.fabricSmallApp #view-one #custOptBtn {
    grid-area: options;

    justify-self: start;

    min-height: 34px;
    max-height: none;

    margin: 1px 0 0;
    padding: 0 12px;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px;

    background:
        var(--lynx-button-bg) !important;

    color:
        var(--lynx-button-text) !important;

    font-family: var(--themeBody);
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


body.fabricSmallApp #view-one #custOptBtn:hover {
    border-color:
        var(--lynx-border-strong) !important;

    color:
        var(--lynx-accent-strong) !important;
}


/* =========================================================
   EXPIRATION + PASSWORD ROWS
   ========================================================= */

body.fabricSmallApp #view-one .dipRow {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        42px;

    align-items: end;
    gap: 8px;

    max-height: 0;

    margin: 0;
    padding: 0;

    opacity: 0;

    overflow: hidden;

    border:
        0 solid
        transparent !important;

    border-radius: 12px;

    background:
        color-mix(
            in srgb,
            var(--lynx-accent-soft) 18%,
            transparent
        );

    transition:
        max-height .22s ease,
        padding .22s ease,
        opacity .16s ease,
        border-color .22s ease;
}


body.fabricSmallApp #view-one .dipRow.showOption {
    max-height: 120px;

    padding: 13px;

    opacity: 1;

    overflow: visible;

    border-width: 1px !important;

    border-color:
        var(--lynx-border) !important;
}


body.fabricSmallApp #view-one .dipRow > label {
    grid-column: 1 / -1;

    margin: 0;
}


/* Old empty spacer div is unnecessary in this layout */

body.fabricSmallApp #view-one .dipRow > div {
    display: none;
}


body.fabricSmallApp #view-one .dipRow input {
    grid-column: 1;
}


body.fabricSmallApp #view-one .custOptToggle {
    grid-column: 2;

    align-self: stretch;

    min-width: 42px;
    min-height: 48px;

    margin: 0;
    padding: 0;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 10px;

    background:
        var(--lynx-button-bg) !important;

    cursor: pointer;
}


body.fabricSmallApp #view-one .custOptToggle span {
    position: relative;

    display: block;

    width: 16px;
    height: 16px;

    margin: auto;

    border-radius: 50%;

    background:
        var(--lynx-text-muted);

    transition:
        background-color .16s ease,
        transform .16s ease;
}


body.fabricSmallApp #view-one .custOptToggle.is-on {
    background:
        var(--lynx-accent-soft) !important;

    border-color:
        var(--lynx-accent) !important;
}


body.fabricSmallApp #view-one .custOptToggle.is-on span {
    background:
        var(--lynx-accent-strong);

    transform: scale(1.08);
}


body.fabricSmallApp #view-one .custOptToggle:disabled {
    cursor: not-allowed;
    opacity: .45;
}


/* ---------- PREMIUM TAG ---------- */

body.fabricSmallApp #view-one #expiresInput::before,
body.fabricSmallApp #view-one #custPassInput::before {
    content: "premium";

    position: absolute;

    top: 10px;
    right: 10px;

    padding: 3px 7px;

    border-radius: 999px;

    background:
        var(--lynx-accent-soft);

    color:
        var(--lynx-accent-strong);

    font-size: 7px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   RESULT — VIEW ONE
   ========================================================= */

body.fabricSmallApp #view-one #linkShortResultDiv {
    display: none;

    grid-template-columns:
        minmax(0, 1fr)
        180px;

    align-items: stretch;
    gap: 14px;

    width: 100%;

    margin-top: 16px;
}


body.fabricSmallApp #view-one #result,
body.fabricSmallApp #view-one #linkShortQRholder {
    width: auto;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 16px;

    background:
        var(--lynx-surface-strong);
}


body.fabricSmallApp #view-one #result {
    padding: 19px;
}


body.fabricSmallApp #view-one #result strong {
    display: block;

    margin: 0 0 7px;

    color:
        var(--lynx-text-muted);

    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}


body.fabricSmallApp #view-one #shortUrl {
    margin: 0 0 13px;

    color:
        var(--lynx-accent-strong);

    font-family:
        "Roboto Slab",
        serif;

    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 450;
    line-height: 1.35;

    overflow-wrap: anywhere;
}


body.fabricSmallApp #view-one #linkShortQRholder {
    display: grid;

    align-content: center;
    justify-items: center;

    gap: 8px;

    min-height: 170px;
    padding: 14px;
}


body.fabricSmallApp #view-one #qrCanvas {
    width: 132px !important;
    height: 132px !important;

    padding: 7px;

    border-radius: 10px;

    background: #fff;
}


/* =========================================================
   GENERIC SMALL ACTION BUTTON
   ========================================================= */

body.fabricSmallApp .copy-btn {
    min-height: 35px;

    margin: 0;
    padding: 0 12px;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px;

    background:
        var(--lynx-button-bg) !important;

    color:
        var(--lynx-button-text) !important;

    font-family:
        var(--themeBody);

    font-size: 9px;
    font-weight: 750;

    cursor: pointer;
}


body.fabricSmallApp .copy-btn:hover {
    border-color:
        var(--lynx-border-strong) !important;

    color:
        var(--lynx-accent-strong) !important;
}


/* =========================================================
   VIEW TWO — QR / SHORTENER WORKSPACE
   ========================================================= */

body.fabricSmallApp #view-two .pageInt {
    padding: 28px;
}


body.fabricSmallApp #view-two .qrMakerWrap {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;
}


body.fabricSmallApp #view-two .qrGen {
    width: 100%;

    margin: 0;
    padding: 22px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 18px;

    background:
        var(--lynx-surface-strong) !important;

    box-shadow:
        0 12px 28px
        rgba(20, 45, 48, .055);
}


/* ---------- PRIMARY QR INPUT ---------- */

body.fabricSmallApp #view-two #qrData {
    width: 100%;

    min-height: 54px;

    margin: 0 0 14px;
    padding: 0 15px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 12px !important;

    outline: none;

    background:
        var(--lynx-input-bg) !important;

    color:
        var(--lynx-text) !important;

    font-family: var(--themeBody);
    font-size: 15px;

    transition:
        border-color .16s ease,
        box-shadow .16s ease;
}


body.fabricSmallApp #view-two #qrData:focus {
    border-color:
        var(--lynx-accent) !important;

    box-shadow:
        var(--lynx-focus);
}


/* =========================================================
   QR MODE TABS
   ========================================================= */

body.fabricSmallApp #view-two .modeRow {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 4px;

    margin: 0 0 16px;
    padding: 4px;

    border-radius: 12px;

    background:
        var(--lynx-surface-muted);
}


body.fabricSmallApp #view-two .modeBtn {
    min-height: 38px;

    margin: 0;
    padding: 0 12px;

    border: 0 !important;
    border-radius: 9px;

    background:
        transparent !important;

    color:
        var(--lynx-text-soft) !important;

    font-family: var(--themeBody);
    font-size: 10px;
    font-weight: 750;

    cursor: pointer;

    box-shadow: none;
}


body.fabricSmallApp #view-two .modeBtn.active {
    background:
        var(--lynx-surface-strong) !important;

    color:
        var(--lynx-accent-strong) !important;

    box-shadow:
        var(--lynx-shadow-soft);
}


/* =========================================================
   MODE PANELS
   ========================================================= */

body.fabricSmallApp #view-two .modePanel {
    width: 100%;

    padding: 18px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 15px;

    background:
        color-mix(
            in srgb,
            var(--lynx-surface-soft) 55%,
            transparent
        );
}


body.fabricSmallApp #view-two .modePanel label {
    color:
        var(--lynx-text-soft);

    font-family: var(--themeBody);
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   QR GENERATE BUTTON
   ========================================================= */

body.fabricSmallApp #view-two #generateQR,
body.fabricSmallApp #view-two #ls-shorten {
    min-height: 43px;

    margin: 0 0 10px;
    padding: 0 16px;

    border: 0 !important;
    border-radius: 10px;

    background:
        var(--lynx-accent) !important;

    color: #fff !important;

    font-family: var(--themeBody);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .035em;

    cursor: pointer;
}


body.fabricSmallApp #view-two #generateQR:hover,
body.fabricSmallApp #view-two #ls-shorten:hover {
    background:
        var(--lynx-accent-strong) !important;
}


/* =========================================================
   "MAKE IT COOLER"
   ========================================================= */

body.fabricSmallApp #view-two .coolerOpClick {
    min-height: 38px;

    margin: 0 0 14px;
    padding: 0 12px;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px;

    background:
        var(--lynx-button-bg) !important;

    color:
        var(--lynx-button-text) !important;

    font-family: var(--themeBody);
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


body.fabricSmallApp #view-two .premiumTag {
    display: inline-block;

    margin-left: 5px;
    padding: 2px 5px;

    border-radius: 999px;

    background:
        var(--lynx-accent-soft);

    color:
        var(--lynx-accent-strong);

    font-size: 7px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}


body.fabricSmallApp #view-two .coolerOpClick.is-premium-locked {
    opacity: .58;
}


/* =========================================================
   QR BRANDING OPTIONS
   ========================================================= */

body.fabricSmallApp #view-two .coolerOptions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin: 0 0 16px;
    padding: 14px;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 12px;

    background:
        var(--lynx-surface-strong);
}


body.fabricSmallApp #view-two .coolerOptions br {
    display: none;
}


body.fabricSmallApp #view-two .coolerOptions label {
    display: grid;

    gap: 7px;

    margin: 0;

    font-size: 9px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}


body.fabricSmallApp #view-two .coolerOptions input[type="text"],
body.fabricSmallApp #view-two .coolerOptions input[type="color"] {
    width: 100%;

    min-height: 40px;

    margin: 0;
    padding: 5px 9px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px !important;

    background:
        var(--lynx-input-bg) !important;
}


body.fabricSmallApp #view-two .coolerOptions input[type="color"] {
    padding: 4px;
}


body.fabricSmallApp #view-two .uploadClientLogo {
    grid-column: 1 / -1;

    display: grid;
    place-items: center;

    min-height: 62px;

    padding: 10px;

    box-sizing: border-box;

    border:
        1px dashed
        var(--lynx-border-strong);

    border-radius: 10px;

    background:
        var(--lynx-surface-soft);

    color:
        var(--lynx-accent-strong);

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


body.fabricSmallApp #view-two .uploadClientLogo p {
    margin: 0;
}


/* =========================================================
   SHRINK-FIRST CHECKBOX
   ========================================================= */

body.fabricSmallApp #view-two #qrOptions > label {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin: 4px 0 14px;

    cursor: pointer;
}


body.fabricSmallApp #view-two #qrOptions input[type="checkbox"],
body.fabricSmallApp #view-two #shortenerOptions input[type="checkbox"] {
    width: 16px;
    height: 16px;

    min-height: 0;

    accent-color:
        var(--lynx-accent);
}


/* =========================================================
   QR OUTPUTS
   ========================================================= */

body.fabricSmallApp #view-two #qrcode,
body.fabricSmallApp #view-two #ls-qr-wrap {
    display: grid;
    place-items: center;

    min-height: 0;

    margin-top: 14px;
    padding: 0;

    border: 0;

    background: transparent;
}


body.fabricSmallApp #view-two .qrRenderShell {
    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 10px;

    margin: 0;
    padding: 16px;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 14px;

    background:
        var(--lynx-surface-strong);

    box-shadow:
        var(--lynx-shadow-soft);
}


body.fabricSmallApp #view-two .qrRenderShell canvas {
    max-width: 100%;
    height: auto !important;

    border-radius: 8px;

    background: #fff;
}


body.fabricSmallApp #view-two .qrClientLabel {
    margin: 0;

    color:
        var(--lynx-text);

    font-size: 12px;
    font-weight: 650;
}


/* =========================================================
   QR TOOL — SHORTENER MODE
   ========================================================= */

body.fabricSmallApp #view-two #shortenerOptions {
    padding: 18px;
}


body.fabricSmallApp #view-two #shortenerOptions .optRow {
    display: grid;

    gap: 7px;

    width: 100%;

    margin: 0 0 12px;
    padding: 0;

    border: 0;

    background: transparent;
}


body.fabricSmallApp #view-two #shortenerOptions .optRow label {
    margin: 0;

    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}


body.fabricSmallApp #view-two #shortenerOptions .optRow input {
    width: 100%;
    min-height: 43px;

    margin: 0;
    padding: 0 11px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px !important;

    outline: none;

    background:
        var(--lynx-input-bg) !important;

    color:
        var(--lynx-text) !important;

    font-size: 13px;
}


body.fabricSmallApp #view-two #shortenerOptions .optRow input:focus {
    border-color:
        var(--lynx-accent) !important;

    box-shadow:
        var(--lynx-focus);
}


body.fabricSmallApp #view-two #ls-result {
    margin-top: 14px;
    padding: 15px;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 12px;

    background:
        var(--lynx-surface-strong);
}


body.fabricSmallApp #view-two #ls-result strong {
    color:
        var(--lynx-text-muted);

    font-size: 8px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}


body.fabricSmallApp #view-two #ls-short {
    margin: 6px 0 12px;

    color:
        var(--lynx-accent-strong);

    font-family:
        "Roboto Slab",
        serif;

    font-size: 17px;

    overflow-wrap: anywhere;
}


/* =========================================================
   VIEW THREE — LYNX MANAGER
   ========================================================= */

body.fabricSmallApp #view-three .builderPanel {
    padding: 28px;
}


body.fabricSmallApp #view-three .builderHeader {
    margin-bottom: 20px;
    padding-bottom: 16px;

    border-bottom:
        1px solid
        var(--lynx-border);
}


body.fabricSmallApp #lynxLinkManager {
    width: 100%;

    text-align: left;

    color:
        var(--lynx-text);
}


/* =========================================================
   MANAGER TOOLBAR
   ========================================================= */

body.fabricSmallApp #lynxLinkManager .lynxManagerToolbar {
    display: grid;

    grid-template-columns:
        minmax(250px, 1fr)
        135px
        145px
        auto;

    align-items: end;
    gap: 10px;

    margin: 0 0 18px;
    padding: 14px;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 14px;

    background:
        var(--lynx-surface-soft);
}


body.fabricSmallApp #lynxLinkManager .lynxManagerToolbar label {
    display: grid;

    gap: 6px;

    margin: 0;

    color:
        var(--lynx-text-soft) !important;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}


body.fabricSmallApp #lynxLinkManager .lynxManagerToolbar input,
body.fabricSmallApp #lynxLinkManager .lynxManagerToolbar select {
    width: 100%;
    min-height: 39px;

    margin: 0;
    padding: 0 10px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px !important;

    outline: none;

    background:
        var(--lynx-input-bg) !important;

    color:
        var(--lynx-text) !important;

    font-family:
        var(--themeBody);

    font-size: 11px;
    font-weight: 500;
}


body.fabricSmallApp #lynxLinkManager .lynxManagerToolbar input:focus,
body.fabricSmallApp #lynxLinkManager .lynxManagerToolbar select:focus {
    border-color:
        var(--lynx-accent) !important;

    box-shadow:
        var(--lynx-focus);
}


body.fabricSmallApp #lynxManagerRefresh {
    min-height: 39px;

    margin: 0;
    padding: 0 13px;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px;

    background:
        var(--lynx-button-bg) !important;

    color:
        var(--lynx-button-text) !important;

    font-family:
        var(--themeBody);

    font-size: 9px;
    font-weight: 750;

    cursor: pointer;
}


/* =========================================================
   MANAGER SUMMARY
   ========================================================= */

body.fabricSmallApp .lynxManagerSummary {
    margin: 0 0 9px;

    color:
        var(--lynx-text-muted) !important;

    font-size: 10px;
}


body.fabricSmallApp .lynxManagerSummary p {
    margin: 0;
}


/* =========================================================
   LINK CARDS
   ========================================================= */

body.fabricSmallApp .lynxManagerGrid {
    display: grid;

    gap: 11px;
}


body.fabricSmallApp .lynxManagerCard {
    position: relative;

    padding: 17px;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 15px;

    background:
        var(--lynx-surface-strong) !important;

    color:
        var(--lynx-text) !important;

    box-shadow:
        0 8px 20px
        rgba(20, 45, 48, .045) !important;

    transition:
        border-color .16s ease,
        transform .16s ease,
        box-shadow .16s ease;
}


body.fabricSmallApp .lynxManagerCard:not(.is-editing):hover {
    transform:
        translateY(-1px);

    border-color:
        var(--lynx-border-strong) !important;

    box-shadow:
        0 12px 25px
        rgba(20, 45, 48, .07) !important;
}


body.fabricSmallApp .lynxManagerCardHead {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 7px;
}


body.fabricSmallApp .lynxManagerCardHead > strong {
    flex: 0 0 auto;

    padding: 5px 8px;

    border-radius: 999px;

    background:
        var(--lynx-surface-muted);

    color:
        var(--lynx-text-soft);

    font-size: 9px;
    font-weight: 700;
}


body.fabricSmallApp .lynxManagerEyebrow {
    margin: 0 0 3px;

    color:
        var(--lynx-accent-strong) !important;

    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}


body.fabricSmallApp .lynxManagerCard h3 {
    margin: 0;

    color:
        var(--lynx-text) !important;

    font-family:
        var(--themeH2);

    font-size: 18px;
    font-weight: 450;
    line-height: 1.25;
}


body.fabricSmallApp .lynxManagerShort {
    display: inline-block;

    margin: 4px 0 6px;

    color:
        var(--lynx-accent-strong) !important;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


body.fabricSmallApp .lynxManagerShort:hover {
    text-decoration: underline;
}


body.fabricSmallApp .lynxManagerDestination {
    max-width: 100%;

    margin: 0;

    overflow: hidden;

    color:
        var(--lynx-text-soft) !important;

    font-size: 11px;
    line-height: 1.45;

    text-overflow: ellipsis;
    white-space: nowrap;
}


body.fabricSmallApp .lynxManagerMeta {
    display: flex;

    flex-wrap: wrap;
    gap: 6px;

    margin: 12px 0;

    color:
        var(--lynx-text-muted) !important;

    font-size: 9px;
}


body.fabricSmallApp .lynxManagerMeta span {
    padding: 4px 7px;

    border:
        1px solid
        var(--lynx-border);

    border-radius: 999px;

    background:
        var(--lynx-surface-soft);
}


/* =========================================================
   MANAGER ACTIONS
   ========================================================= */

body.fabricSmallApp .lynxManagerActions {
    display: flex;

    flex-wrap: wrap;
    align-items: center;

    gap: 6px;

    margin-top: 5px;
}


body.fabricSmallApp .lynxManagerActions button,
body.fabricSmallApp .lynxEditActions button {
    min-height: 34px;

    margin: 0;
    padding: 0 11px;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 8px;

    background:
        var(--lynx-button-bg) !important;

    color:
        var(--lynx-button-text) !important;

    font-family:
        var(--themeBody);

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}


body.fabricSmallApp .lynxManagerActions button:hover,
body.fabricSmallApp .lynxEditActions button:hover {
    border-color:
        var(--lynx-border-strong) !important;

    color:
        var(--lynx-accent-strong) !important;
}


body.fabricSmallApp .lynxManagerActions button[data-action="delete"] {
    margin-left: auto;

    background:
        var(--lynx-danger-soft) !important;

    color:
        var(--lynx-danger) !important;
}


/* =========================================================
   EDIT CARD
   ========================================================= */

body.fabricSmallApp .lynxEditForm {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


body.fabricSmallApp .lynxEditForm > label {
    display: grid;

    gap: 6px;

    color:
        var(--lynx-text-soft) !important;

    font-size: 9px;
    font-weight: 700;
}


body.fabricSmallApp .lynxEditForm > label:nth-child(1),
body.fabricSmallApp .lynxEditForm > label:nth-child(2) {
    grid-column: span 1;
}


body.fabricSmallApp .lynxEditForm input:not([type="checkbox"]) {
    width: 100%;
    min-height: 42px;

    margin: 0;
    padding: 0 11px;

    box-sizing: border-box;

    border:
        1px solid
        var(--lynx-border) !important;

    border-radius: 9px !important;

    outline: none;

    background:
        var(--lynx-input-bg) !important;

    color:
        var(--lynx-text) !important;

    font-family:
        var(--themeBody);

    font-size: 12px;
}


body.fabricSmallApp .lynxEditForm input:not([type="checkbox"]):focus {
    border-color:
        var(--lynx-accent) !important;

    box-shadow:
        var(--lynx-focus);
}


body.fabricSmallApp .lynxCheckLabel {
    display: flex !important;

    grid-column: 1 / -1;

    align-items: center;

    gap: 8px;
}


body.fabricSmallApp .lynxCheckLabel input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 0;

    margin: 0;

    accent-color:
        var(--lynx-accent);
}


body.fabricSmallApp .lynxEditActions {
    grid-column: 1 / -1;

    display: flex;

    justify-content: flex-end;

    gap: 7px;

    padding-top: 4px;
}


/* =========================================================
   EMPTY / ERROR / MIGRATION STATES
   ========================================================= */

body.fabricSmallApp .lynxManagerEmpty {
    padding: 40px 18px;

    border:
        1px dashed
        var(--lynx-border-strong) !important;

    border-radius: 14px;

    background:
        var(--lynx-surface-soft) !important;

    color:
        var(--lynx-text-soft) !important;

    text-align: center;

    box-shadow: none !important;
}


body.fabricSmallApp .lynxMigrationNotice {
    margin: 0 0 16px;

    padding: 15px;

    border:
        1px solid
        var(--lynx-border-strong);

    border-radius: 13px;

    background:
        var(--lynx-accent-soft);

    color:
        var(--lynx-text);
}


/* =========================================================
   CLASSIC THEME DETAILS
   ========================================================= */

html[data-theme="classic"]
body.fabricSmallApp
#view-one,

html[data-theme="classic"]
body.fabricSmallApp
#view-two .pageInt,

html[data-theme="classic"]
body.fabricSmallApp
#view-three .builderPanel {
    border-radius: 8px;
}


html[data-theme="classic"]
body.fabricSmallApp
.linkShortDiv,

html[data-theme="classic"]
body.fabricSmallApp
.qrGen {
    border-radius: 5px;
}



/* =========================================================
   RESPONSIVE COMPLETION
   ========================================================= */


@media all and (max-width:1150px) {
    .appUseCaseGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    
    .marketingHeroArt {
        min-height: 260px;
    }    

    .heroArtCard {
        max-width: 500px;
        margin: 0 auto;
    }
    
    body.fabricSmallApp .appUseCaseGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media all and (max-width:900px) {
    body.fabricSmallApp #view-one .linkShortDiv {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(180px, .55fr);

        grid-template-areas:
            "url url"
            "slug action"
            "options options"
            "expire pass";
    }


    body.fabricSmallApp #view-one #linkShortResultDiv {
        grid-template-columns:
            minmax(0, 1fr)
            160px;
    }


    body.fabricSmallApp
    #lynxLinkManager
    .lynxManagerToolbar {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(120px, .4fr);

        align-items: end;
    }


    body.fabricSmallApp
    #lynxLinkManager
    .lynxManagerSearch {
        grid-column:
            1 / -1;
    }    
}

@media (max-width: 720px) {
    .lynxMigrationNotice {
        align-items: stretch;
        flex-direction: column;
    }

    .lynxMigrationNotice button {
        width: 100%;
    }
    
    .lynxManagerToolbar{
        grid-template-columns:1fr 1fr
    }
    
    .lynxManagerSearch{
        grid-column:1/-1
    } 
}

@media (max-width: 700px) {
    
    .lynxManagerToolbar {
        grid-template-columns: 1fr !important;
    }

    .lynxManagerSearch {
        grid-column: auto !important;
    }

    .lynxManagerCardHead {
        align-items: flex-start;
    }

    .lynxManagerActions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lynxManagerActions button:last-child {
        margin-left: 0 !important;
    }

    .lynxEditActions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .modeRow,
    .marketingHeroActions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    
    .appUseCase h3 {
        font-size: 17px !important;
        font-weight: 500;
    }

    /* slide 1 */

    .helpMiniForm {
        grid-template-columns: 1fr;
    }

    .helpMiniButton {
        min-height: 36px;
    }

    .helpResult {
        display: grid;
        gap: 3px;
    }

    /* slide 2 */

    .helpSlugDemo {
        display: grid;
    }

    .helpSlugPrefix {
        padding-bottom: 5px;

        border-right: 0;
    }

    .helpSlugValue {
        padding-top: 5px;
    }

    /* slide 3 */

    .helpVisual--qr {
        display: grid;
        grid-template-columns: 1fr;
    }

    .helpQrCard {
        justify-content: center;
    }

    .helpQrOptions {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .helpQrOptions span {
        justify-content: center;

        padding: 7px 5px;
    }

    /* slide 4 */

    .helpVisual--control {
        grid-template-columns: 1fr;
    }

    .linkShortDiv {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 14px;
    }

    #shortenUrlInput,
    #custSlugInput,
    #expiresInput,
    #custPassInput,
    #shortenBtn {
        grid-column: 1;
    }

    .linkShortDiv input {
        font-size: 16px;
    }

    #expiresInput,
    #custPassInput {
        padding: 9px;
    }

    #linkShortResultDiv {
        grid-template-columns: 1fr;
    }

    #linkShortQRholder {
        justify-self: stretch;
    }

    #shortUrl {
        font-size: 16px;
    }

    .lynxHeroQr {
        width: 140px;
        height: 140px;
    }

    .lynxHeroQrInner {
        width: 110px;
        height: 110px;
    }

    body.fabricSmallApp .appUseCases {
        padding: 18px;
        border-radius: 20px;
    }

    body.fabricSmallApp .appUseCaseGrid {
        grid-template-columns: 1fr;
    }

    body.fabricSmallApp .builderHeader h2 {
        margin: 4px 0 20px;
        font-size: 24px;
    }

    body.fabricSmallApp .lynxManagerToolbar {
        grid-template-columns: 1fr;
    }

    body.fabricSmallApp .lynxManagerSearch {
        grid-column: auto;
    }

    body.fabricSmallApp .lynxManagerCardHead {
        align-items: stretch;
        flex-direction: column;
    }

    body.fabricSmallApp .lynxManagerActions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.fabricSmallApp .lynxManagerActions button,
    body.fabricSmallApp .lynxManagerActions button:last-child {
        width: 100%;
        margin: 0;
    }

    body.fabricSmallApp .lynxEditActions {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.fabricSmallApp .lynxMigrationNotice {
        align-items: stretch;
        flex-direction: column;
    }

    body.fabricSmallApp .lynxMigrationNotice button {
        width: 100%;
    }
    
}

@media all and (max-width:650px) {
    body.fabricSmallApp #view-one,
    body.fabricSmallApp #view-two .pageInt,
    body.fabricSmallApp #view-three .builderPanel {
        padding: 17px;

        border-radius: 16px;
    }


    body.fabricSmallApp #view-one .linkShortDiv {
        grid-template-columns: 1fr;

        grid-template-areas:
            "url"
            "slug"
            "action"
            "options"
            "expire"
            "pass";

        padding: 14px;
    }


    body.fabricSmallApp #view-one #shortenBtn {
        min-height: 46px;
    }


    body.fabricSmallApp #view-one #custOptBtn {
        justify-self: stretch;

        width: 100%;

        min-height: 38px;
    }


    body.fabricSmallApp #view-one .dipRow {
        grid-template-columns:
            minmax(0, 1fr)
            42px;
    }


    body.fabricSmallApp #view-one #linkShortResultDiv {
        grid-template-columns: 1fr;
    }


    body.fabricSmallApp #view-one #linkShortQRholder {
        min-height: 160px;
    }


    /* QR WORKSPACE */

    body.fabricSmallApp #view-two .qrGen {
        padding: 14px;
    }


    body.fabricSmallApp #view-two .modeRow {
        grid-template-columns: 1fr 1fr;
    }


    body.fabricSmallApp #view-two .modePanel {
        padding: 13px;
    }


    body.fabricSmallApp #view-two .coolerOptions {
        grid-template-columns: 1fr;
    }


    body.fabricSmallApp #view-two .uploadClientLogo {
        grid-column: 1;
    }


    body.fabricSmallApp #view-two #generateQR,
    body.fabricSmallApp #view-two #ls-shorten {
        width: 100%;
    }


    /* MANAGER */

    body.fabricSmallApp
    #lynxLinkManager
    .lynxManagerToolbar {
        grid-template-columns: 1fr;
    }


    body.fabricSmallApp
    #lynxLinkManager
    .lynxManagerSearch {
        grid-column: auto;
    }


    body.fabricSmallApp .lynxManagerCardHead {
        flex-direction: column;

        gap: 8px;
    }


    body.fabricSmallApp .lynxManagerCardHead > strong {
        align-self: flex-start;
    }


    body.fabricSmallApp .lynxManagerActions {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    body.fabricSmallApp .lynxManagerActions button,
    body.fabricSmallApp
    .lynxManagerActions
    button[data-action="delete"] {
        width: 100%;

        margin: 0;
    }


    body.fabricSmallApp .lynxEditForm {
        grid-template-columns: 1fr;
    }


    body.fabricSmallApp
    .lynxEditForm > label {
        grid-column: 1;
    }


    body.fabricSmallApp .lynxCheckLabel,
    body.fabricSmallApp .lynxEditActions {
        grid-column: 1;
    }


    body.fabricSmallApp .lynxEditActions {
        display: grid;

        grid-template-columns: 1fr;
    }


    body.fabricSmallApp .lynxEditActions button {
        width: 100%;
    }
}

@media all and (max-width:450px) { 
    .heroArtCard {
        box-shadow:none;
    }
}

@media (max-width: 420px) {

    body.fabricSmallApp #view-two .modeRow {
        grid-template-columns: 1fr;
    }


    body.fabricSmallApp .lynxManagerActions {
        grid-template-columns: 1fr;
    }
}

@media all and (max-width:400px) {
    
    .heroArtCard--front {
        inset: 0 -2px 28px 0;
        padding: 20px 17px;
    }
    
    .heroArtCard--back {
        inset: 28px 0 12px 10px;
        opacity: .45;
    }
}

@media all and (max-width:360px) {
    
    .lynxHeroQrInner {
        width: 100px;
        height: 100px;
    }
    
    .lynxHeroLastHd {
        gap:9px;
    }
    
    .lynxHeroQr {
        width: 120px;
        height: 120px;
    }
    
    .lynxHeroCard {
        gap: 8px;
    }
    
}

