.zq-shortener {
    --zq-shortener-bg: #8af135;
    --zq-shortener-accent: #61ce70;
    --zq-shortener-field: #fff;
    --zq-shortener-ink: #0f2923;
    --zq-shortener-copy: #173018;
    --zq-shortener-muted: #2a4741;
    --zq-shortener-white: #fff;
    position: relative;
    z-index: 2;
    isolation: isolate;
    scroll-margin-top: 84px;
    width: min(640px, 100%);
    max-width: 640px;
    margin: 64px auto;
    padding: 32px 32px 28px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: var(--zq-shortener-bg);
    color: var(--zq-shortener-ink);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
    text-align: left;
}

.zq-shortener *,
.zq-shortener *::before,
.zq-shortener *::after {
    box-sizing: border-box;
}

.zq-shortener [hidden] {
    display: none !important;
}

.zq-shortener__header {
    margin: 0 0 24px;
}

.zq-shortener__header h2,
.zq-shortener__result h3 {
    margin: 0;
    color: var(--zq-shortener-ink);
    font-family: Roboto, Arial, sans-serif !important;
    letter-spacing: normal;
}

.zq-shortener__header h2 {
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.zq-shortener__header p {
    margin: 0;
    color: var(--zq-shortener-muted);
    font-size: 14px;
    line-height: 1.6;
}

.zq-shortener__form {
    margin: 0;
    animation: zqShortenerPanelIn .38s cubic-bezier(.2, .8, .2, 1) both;
}

.zq-shortener__field,
.zq-shortener__smart-field {
    display: block;
    margin: 0 0 18px;
}

.zq-shortener__field > span:first-child,
.zq-shortener__smart-field > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--zq-shortener-copy);
    font-size: 13px;
    font-weight: 500;
}

.zq-shortener__field b {
    color: var(--zq-shortener-copy);
}

.zq-shortener__field > input,
.zq-shortener__name-input {
    width: 100%;
    min-height: 57px;
    margin: 0;
    padding: 0 20px;
    border: 2px solid rgba(15, 41, 35, .3) !important;
    border-radius: 39px !important;
    outline: none;
    background: var(--zq-shortener-field) !important;
    color: #0f261d !important;
    -webkit-text-fill-color: #0f261d;
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
    font-size: clamp(17px, 3.8vw, 24px);
    font-weight: 500;
    line-height: 1.25;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.zq-shortener__field > input::placeholder,
.zq-shortener__name-input::placeholder {
    color: #4b625a;
    -webkit-text-fill-color: #4b625a;
    opacity: 1;
}

.zq-shortener__field > input:hover,
.zq-shortener__field > input:focus,
.zq-shortener__name-input:hover,
.zq-shortener__name-input:focus {
    border-color: var(--zq-shortener-ink) !important;
    box-shadow: 0 0 0 3px rgba(15, 41, 35, .14) !important;
}

.zq-shortener input:-webkit-autofill,
.zq-shortener input:-webkit-autofill:hover,
.zq-shortener input:-webkit-autofill:focus,
.zq-shortener input:-webkit-autofill:active {
    -webkit-text-fill-color: #0f261d !important;
    caret-color: #0f261d;
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    transition: background-color 9999s ease-out 0s;
}

.zq-shortener input:autofill {
    background: #fff !important;
    color: #0f261d !important;
    -webkit-text-fill-color: #0f261d !important;
}

.zq-shortener input::selection {
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
    -webkit-text-fill-color: var(--zq-shortener-white);
}

.zq-shortener input[aria-invalid="true"] {
    border-color: #8b231c !important;
    box-shadow: 0 0 0 2px rgba(139, 35, 28, .18) !important;
}

.zq-shortener__field > small,
.zq-shortener__smart-field > small {
    display: block;
    margin: 7px 4px 0;
    color: var(--zq-shortener-copy);
    font-size: 14px;
    line-height: 1.55;
}

.zq-shortener__subdomain {
    margin: 0 0 18px;
}

.zq-shortener__subdomain summary,
.zq-shortener__smart summary,
.zq-shortener__personalize summary {
    display: flex;
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    list-style: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.zq-shortener__smart summary::before {
    display: none;
    content: none;
}

.zq-shortener__subdomain summary::-webkit-details-marker,
.zq-shortener__smart summary::-webkit-details-marker,
.zq-shortener__personalize summary::-webkit-details-marker {
    display: none;
}

.zq-shortener__subdomain summary {
    border: 1px solid rgba(15, 41, 35, .24);
    background: rgba(97, 206, 112, .62);
    color: var(--zq-shortener-ink);
}

.zq-shortener__subdomain summary::before,
.zq-shortener__smart summary::before,
.zq-shortener__personalize summary::before {
    content: "+";
    font-size: 16px;
    font-weight: 500;
}

.zq-shortener__subdomain[open] summary::before,
.zq-shortener__smart[open] summary::before,
.zq-shortener__personalize[open] summary::before {
    content: "−";
}

.zq-shortener summary em,
.zq-shortener__smart-field em {
    padding: 2px 7px;
    border: 1px solid rgba(138, 241, 53, .28);
    border-radius: 999px;
    background: rgba(15, 41, 35, .1);
    color: var(--zq-shortener-copy);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.zq-shortener__field--subdomain {
    margin: 14px 0 0;
}

.zq-shortener__domain-field {
    display: flex !important;
    min-height: 57px;
    align-items: stretch !important;
    gap: 0 !important;
    overflow: hidden;
    border-radius: 39px;
    background: var(--zq-shortener-field);
}

.zq-shortener__domain-field input {
    width: 100%;
    min-width: 0;
    min-height: 57px;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 20px;
    border: 2px solid rgba(15, 41, 35, .3) !important;
    border-right: 0 !important;
    border-radius: 39px 0 0 39px !important;
    outline: 0;
    background: transparent !important;
    color: #0f261d !important;
    -webkit-text-fill-color: #0f261d;
    font: 500 clamp(17px, 3.8vw, 24px)/1.25 Roboto, Arial, sans-serif;
}

.zq-shortener__domain-field strong {
    display: flex;
    min-width: 100px;
    align-items: center;
    justify-content: center;
    padding: 0 16px 0 10px;
    border-radius: 0 999px 999px 0;
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
    font-size: clamp(15px, 3.2vw, 21px);
    font-weight: 500;
    white-space: nowrap;
}

.zq-shortener__domain-field:focus-within {
    box-shadow: 0 0 0 3px rgba(15, 41, 35, .14);
}

.zq-shortener__field > small.is-available {
    color: #173018;
    font-weight: 700;
}

.zq-shortener__field > small.is-unavailable {
    color: #8b231c;
    font-weight: 700;
}

.zq-shortener__form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.zq-shortener__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 9px 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.zq-shortener__button--primary {
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
    box-shadow: 0 6px 14px rgba(0, 255, 153, .22);
}

.zq-shortener__button--primary:hover,
.zq-shortener__button--primary:focus-visible {
    background: var(--zq-shortener-white);
    color: var(--zq-shortener-ink);
    box-shadow: 0 10px 22px rgba(0, 255, 153, .28);
}

.zq-shortener__button--lime {
    background: var(--zq-shortener-bg);
    color: var(--zq-shortener-ink);
    box-shadow: 0 6px 14px rgba(0, 255, 153, .22);
}

.zq-shortener__button--lime:hover,
.zq-shortener__button--lime:focus-visible {
    background: var(--zq-shortener-white);
    color: var(--zq-shortener-ink);
}

.zq-shortener__button--back {
    border: 1px solid rgba(15, 41, 35, .2);
    background: rgba(15, 41, 35, .1);
    color: var(--zq-shortener-ink) !important;
}

.zq-shortener__button--back:hover,
.zq-shortener__button--back:focus-visible {
    border-color: var(--zq-shortener-ink);
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white) !important;
}

.zq-shortener__button--ghost {
    border: 1px solid rgba(15, 41, 35, .35);
    background: transparent;
    color: var(--zq-shortener-ink) !important;
}

.zq-shortener__button--ghost:hover,
.zq-shortener__button--ghost:focus-visible {
    border-color: var(--zq-shortener-ink);
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white) !important;
}

.zq-shortener button:disabled {
    cursor: wait;
    opacity: .65;
}

.zq-shortener__button.is-loading::before {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .28);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: zqShortenerSpin .75s linear infinite;
    content: "";
}

.zq-shortener__quota {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid rgba(126, 255, 35, .28);
    border-radius: 999px;
    background: #08251f;
    color: var(--zq-shortener-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 18px rgba(0, 0, 0, .18);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.zq-shortener__error,
.zq-shortener__notice {
    margin: 10px 0 0;
    padding: 9px 11px;
    border-radius: 9px;
    background: rgba(114, 28, 23, .92);
    color: var(--zq-shortener-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.zq-shortener__notice a {
    color: var(--zq-shortener-white);
    font-weight: 800;
}

.zq-shortener__result {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
    animation: zqShortenerResultIn .52s cubic-bezier(.2, .8, .2, 1) both;
}

.zq-shortener__result-head {
    margin-bottom: 14px;
}

.zq-shortener__eyebrow {
    margin: 0 0 6px;
    color: var(--zq-shortener-bg);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.zq-shortener__result h3 {
    color: var(--zq-shortener-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.zq-shortener__copy-row {
    display: flex;
    min-height: 56px;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(138, 241, 53, .44);
    border-radius: 999px;
    background: #75d233;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.zq-shortener__copy-row-icon {
    display: grid;
    width: 54px;
    min-width: 54px;
    place-items: center;
    border-radius: 999px 0 0 999px;
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
}

.zq-shortener__copy-row-icon svg,
.zq-shortener__copy-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.zq-shortener__copy-row > a {
    min-width: 0;
    flex: 1 1 auto;
    align-self: center;
    overflow: hidden;
    padding: 0 14px;
    color: var(--zq-shortener-ink) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zq-shortener__copy-row button {
    display: inline-flex;
    min-width: 105px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 5px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
    cursor: pointer;
    font: 700 13px/1 Roboto, Arial, sans-serif;
    transition: background-color .18s ease, color .18s ease;
}

.zq-shortener__copy-row button:hover,
.zq-shortener__copy-row button:focus-visible,
.zq-shortener__copy-row button.is-copied {
    background: var(--zq-shortener-white);
    color: var(--zq-shortener-ink);
}

.zq-shortener__copy-icon {
    width: 18px;
    height: 18px;
}

.zq-shortener__ready,
.zq-shortener__smart-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.zq-shortener__ready > span,
.zq-shortener__smart-note > span {
    display: inline-grid;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-shortener-accent);
    color: var(--zq-shortener-ink);
}

.zq-shortener__smart,
.zq-shortener__personalize {
    margin-top: 17px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.zq-shortener__smart summary,
.zq-shortener__personalize summary {
    border: 1px solid rgba(138, 241, 53, .38);
    background: rgba(138, 241, 53, .1);
    color: var(--zq-shortener-bg);
}

.zq-shortener__smart summary:hover,
.zq-shortener__smart summary:focus-visible,
.zq-shortener__personalize summary:hover,
.zq-shortener__personalize summary:focus-visible {
    background: var(--zq-shortener-bg);
    color: var(--zq-shortener-ink);
}

.zq-shortener__smart summary em,
.zq-shortener__personalize summary em,
.zq-shortener__smart-field em {
    background: rgba(138, 241, 53, .1);
    color: var(--zq-shortener-bg);
}

.zq-shortener__smart summary:hover em,
.zq-shortener__personalize summary:hover em {
    color: var(--zq-shortener-ink);
}

.zq-shortener__smart-body,
.zq-shortener__personalize > label {
    margin-top: 14px;
}

.zq-shortener__smart-body > p:first-child {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}

.zq-shortener__smart-fields {
    display: grid;
    gap: 9px;
    margin-top: 15px;
}

.zq-shortener__smart-field {
    margin: 0;
}

.zq-shortener__smart-field > span:first-child {
    margin-bottom: 4px;
    color: var(--zq-shortener-white);
    font-size: 11px;
    font-weight: 700;
}

.zq-shortener__smart-input {
    display: flex;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(138, 241, 53, .44);
    border-radius: 999px;
    background: #75d233;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.zq-shortener__smart-input:focus-within {
    border-color: var(--zq-shortener-bg);
    box-shadow: 0 0 0 3px rgba(138, 241, 53, .16);
}

.zq-shortener__smart-icon {
    display: grid;
    width: 44px;
    min-width: 44px;
    height: 40px;
    min-height: 40px;
    place-items: center;
    border-radius: 999px 0 0 999px;
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
}

.zq-shortener__smart-icon svg {
    display: block;
    width: 21px;
    height: 21px;
}

.zq-shortener__smart-input input {
    min-width: 0;
    width: auto;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    flex: 1 1 auto;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-radius: 0 999px 999px 0;
    outline: 0;
    background: transparent !important;
    color: var(--zq-shortener-ink) !important;
    -webkit-text-fill-color: var(--zq-shortener-ink) !important;
    font: 500 13.5px/40px Roboto, Arial, sans-serif !important;
    vertical-align: middle;
    box-shadow: none !important;
}

.zq-shortener__smart-input input::placeholder {
    color: rgba(15, 41, 35, .72);
    -webkit-text-fill-color: rgba(15, 41, 35, .72);
    opacity: 1;
}

.zq-shortener__smart-input input:-webkit-autofill,
.zq-shortener__smart-input input:-webkit-autofill:hover,
.zq-shortener__smart-input input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--zq-shortener-ink) !important;
    caret-color: var(--zq-shortener-ink);
    -webkit-box-shadow: 0 0 0 1000px #75d233 inset !important;
    box-shadow: 0 0 0 1000px #75d233 inset !important;
}

.zq-shortener__smart-input:has(input[aria-invalid="true"]) {
    border-color: #ff8a80;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, .14);
}

.zq-shortener__smart-field > small {
    margin: 4px 4px 0;
    color: rgba(138, 241, 53, .76);
    font-size: 9px;
    line-height: 1.35;
}

.zq-shortener__smart-field > small.is-available {
    color: var(--zq-shortener-bg);
    font-weight: 700;
}

.zq-shortener__smart-field > small.is-unavailable {
    color: #ffaaa4;
    font-weight: 700;
}

.zq-shortener__smart-field > small.is-checking {
    color: rgba(255, 255, 255, .68);
}

.zq-shortener__smart-field--domain {
    margin-bottom: 2px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.zq-shortener__smart-input--domain strong {
    display: inline-flex;
    min-width: 78px;
    align-items: center;
    justify-content: center;
    padding: 0 14px 0 10px;
    color: var(--zq-shortener-ink);
    height: 40px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.zq-shortener__smart-note {
    margin-top: 12px;
    font-size: 10px;
}

.zq-shortener__smart-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.zq-shortener__smart-actions .zq-shortener__button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 12px;
}

.zq-shortener__qr-toggle {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    margin: 16px 0 0;
    padding: 5px 7px 5px 5px;
    border: 1px solid rgba(138, 241, 53, .38);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: var(--zq-shortener-bg);
    cursor: pointer;
    font: 700 12px/1.2 Roboto, Arial, sans-serif;
    text-align: left;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.zq-shortener__qr-toggle:hover,
.zq-shortener__qr-toggle:focus-visible,
.zq-shortener__qr-toggle.is-open {
    outline: none;
    background: var(--zq-shortener-bg);
    color: var(--zq-shortener-ink);
    box-shadow: 0 0 0 3px rgba(138, 241, 53, .14);
}

.zq-shortener__qr-toggle-icon {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-shortener-ink);
    color: var(--zq-shortener-white);
}

.zq-shortener__qr-toggle-icon svg {
    display: block;
    width: 19px;
    height: 19px;
}

.zq-shortener__qr-toggle-mark {
    margin-left: auto;
    padding-right: 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: transform .18s ease;
}

.zq-shortener__qr-toggle.is-open .zq-shortener__qr-toggle-mark {
    transform: rotate(45deg);
}

.zq-shortener__qr {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.zq-shortener__qr-toggle + .zq-shortener__qr {
    margin-top: 12px;
    padding-top: 12px;
}

.zq-shortener__qr-visual-shell {
    min-width: 0;
}

.zq-shortener__qr-visual {
    width: 150px;
    height: 150px;
    padding: 9px;
    overflow: hidden;
    border: 2px solid var(--zq-shortener-bg);
    border-radius: 13px;
    background: var(--zq-shortener-white);
}

.zq-shortener__qr-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zq-shortener__qr-badge {
    display: inline-flex;
    width: 100%;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
    padding: 4px 9px;
    border: 1px solid rgba(138, 241, 53, .38);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: var(--zq-shortener-bg);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.zq-shortener__qr-badge > span {
    color: var(--zq-shortener-accent);
    font-size: 9px;
}

.zq-shortener__qr-content > p:not(.zq-shortener__eyebrow) {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    line-height: 1.5;
}

.zq-shortener__qr-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
}

.zq-shortener__qr-actions button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 7px 9px;
    border: 1px solid rgba(138, 241, 53, .48);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: var(--zq-shortener-white);
    cursor: pointer;
    font: 700 11px/1.2 Roboto, Arial, sans-serif;
    transition: background-color .18s ease, color .18s ease;
}

.zq-shortener__qr-actions button:hover,
.zq-shortener__qr-actions button:focus-visible {
    background: var(--zq-shortener-bg);
    color: var(--zq-shortener-ink);
}

.zq-shortener__qr-content > small {
    display: block;
    min-height: 15px;
    margin-top: 5px;
    color: var(--zq-shortener-bg);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.zq-shortener__personalize .zq-shortener__smart-field {
    margin: 0;
}

.zq-shortener__personalize-head {
    display: grid;
    gap: 3px;
    margin-bottom: 11px;
}

.zq-shortener__personalize-head .zq-shortener__eyebrow {
    margin: 0;
}

.zq-shortener__personalize-head h4 {
    margin: 0;
    color: var(--zq-shortener-white);
    font-family: Roboto, Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.zq-shortener__personalize .zq-shortener__smart-field--domain {
    padding-bottom: 0;
    border-bottom: 0;
}

.zq-shortener__personalize-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.zq-shortener__personalize-actions .zq-shortener__button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 12px;
}

.zq-shortener__personalize-actions .zq-shortener__button:disabled {
    cursor: wait;
    opacity: .68;
}

.zq-shortener__error--personalize {
    margin-top: 9px;
}

.zq-shortener__name-input {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(138, 241, 53, .44);
    background: var(--zq-shortener-white);
    font-size: 13px;
}

.zq-shortener__claim {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px 14px;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(138, 241, 53, .34);
    border-radius: 12px;
    background: rgba(138, 241, 53, .08);
}

.zq-shortener__claim p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    line-height: 1.5;
}

.zq-shortener__claim strong {
    color: var(--zq-shortener-white);
}

.zq-shortener__claim .zq-shortener__button {
    grid-row: span 2;
    min-height: 42px;
    padding: 7px 15px;
    font-size: 13px;
}

.zq-shortener__claim small {
    color: rgba(255, 255, 255, .68);
    font-size: 9px;
}

.zq-shortener__result-navigation {
    width: 100%;
    padding: 0 22px;
}

.zq-shortener__result-navigation[hidden] {
    display: none !important;
}

.zq-shortener__result-navigation-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.zq-shortener__result-actions {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.zq-shortener__result-navigation .zq-shortener__button {
    min-height: 48px;
    padding: 9px 18px;
    font-size: 16px;
}

.zq-shortener__error--navigation {
    margin-top: 10px;
    padding: 9px 10px;
    font-size: 11px;
}

.zq-shortener__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(15, 41, 35, .22);
    list-style: none;
}

.zq-shortener__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--zq-shortener-copy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.zq-shortener__benefits li span {
    display: inline-grid;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-shortener-accent);
    color: var(--zq-shortener-ink);
    font-size: 11px;
}

@keyframes zqShortenerPanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zqShortenerResultIn {
    from { opacity: 0; transform: translateY(14px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zqShortenerSpin {
    to { transform: rotate(360deg); }
}

html.zq-shortener-modal-open {
    overflow: hidden;
}

.zq-shortener-activation[hidden],
.zq-shortener-activation [hidden] {
    display: none !important;
}

.zq-shortener-activation {
    --zq-activation-lime: #8af135;
    --zq-activation-mint: #00ff99;
    --zq-activation-dark: #0f2923;
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #f7fff9;
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
}

.zq-shortener-activation,
.zq-shortener-activation * {
    box-sizing: border-box;
}

.zq-shortener-activation__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 16, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.zq-shortener-activation__dialog {
    position: relative;
    width: min(100%, 420px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(138, 241, 53, .28);
    border-radius: 20px;
    outline: none;
    background: #102a24;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .48), 0 0 36px rgba(138, 241, 53, .1);
}

.zq-shortener-activation__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease;
}

.zq-shortener-activation__close span {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.zq-shortener-activation__close:hover,
.zq-shortener-activation__close:focus-visible {
    outline: none;
    background: var(--zq-activation-lime);
    color: var(--zq-activation-dark);
}

.zq-shortener-activation h2 {
    max-width: calc(100% - 42px);
    margin: 0 0 5px;
    color: var(--zq-activation-lime);
    font-family: Roboto, Arial, sans-serif !important;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.15;
}

.zq-shortener-activation__subtitle {
    margin: 0 42px 18px 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.5;
}

.zq-shortener-activation__qr {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid rgba(138, 241, 53, .38);
    border-radius: 14px;
    background: rgba(4, 35, 28, .46);
}

.zq-shortener-activation__qr > img {
    display: block;
    width: 104px;
    height: 104px;
    padding: 5px;
    border: 2px solid var(--zq-activation-lime);
    border-radius: 14px;
    background: #fff;
    object-fit: contain;
}

.zq-shortener-activation__qr strong,
.zq-shortener-activation__qr span {
    display: block;
}

.zq-shortener-activation__qr strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
}

.zq-shortener-activation__qr > div > span {
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    line-height: 1.45;
}

.zq-shortener-activation__qr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.zq-shortener-activation__qr-actions button {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 9px;
    border: 1px solid rgba(138, 241, 53, .55);
    border-radius: 999px;
    background: rgba(138, 241, 53, .08);
    color: #fff;
    font: inherit;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.zq-shortener-activation__qr-actions button:hover,
.zq-shortener-activation__qr-actions button:focus-visible,
.zq-shortener-activation__qr-actions button.is-copied {
    outline: none;
    background: var(--zq-activation-lime);
    color: var(--zq-activation-dark);
}

.zq-shortener-activation__qr small {
    display: block;
    min-height: 12px;
    margin-top: 4px;
    color: var(--zq-activation-lime);
    font-size: 9px;
}

.zq-shortener-activation__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    align-items: center;
    min-height: 54px;
    margin-bottom: 15px;
    padding: 7px 7px 7px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
}

.zq-shortener-activation__link > span {
    min-width: 0;
    color: var(--zq-activation-lime);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.zq-shortener-activation__link button {
    display: inline-grid !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    place-items: center;
    align-self: center;
    justify-self: end;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: var(--zq-activation-mint);
    color: var(--zq-activation-dark);
    font-size: 15px;
    line-height: 1 !important;
    cursor: pointer;
}

.zq-shortener-activation__link button span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    margin: 0;
    line-height: 1;
}

.zq-shortener-activation__link button:hover,
.zq-shortener-activation__link button:focus-visible,
.zq-shortener-activation__link button.is-copied {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.zq-shortener-activation__status {
    display: grid;
    gap: 8px;
    margin: 0 0 11px;
    padding: 0;
    list-style: none;
}

.zq-shortener-activation__status li {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 8px;
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    line-height: 1.35;
}

.zq-shortener-activation__status li > span:first-child {
    color: var(--zq-activation-lime);
    font-weight: 800;
}

.zq-shortener-activation__status li.is-warning,
.zq-shortener-activation__status li.is-warning > span:first-child {
    color: #eadb75;
}

.zq-shortener-activation__edit {
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--zq-activation-lime);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.zq-shortener-activation__edit:hover,
.zq-shortener-activation__edit:focus-visible {
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.zq-shortener-activation__account {
    display: grid;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
}

.zq-shortener-activation__account > strong {
    color: #fff;
    font-size: 14px;
}

.zq-shortener-activation__account > span {
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    line-height: 1.4;
}

.zq-shortener-activation__account > a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.zq-shortener-activation__google {
    height: 44px;
    min-height: 44px !important;
    padding: 10px 14px !important;
    gap: 8px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #fff;
    color: var(--zq-activation-dark) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.zq-shortener-activation__google img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.zq-shortener-activation__primary {
    border: 1px solid var(--zq-activation-lime);
    background: var(--zq-activation-lime);
    color: var(--zq-activation-dark) !important;
    box-shadow: 0 8px 18px rgba(138, 241, 53, .18);
}

.zq-shortener-activation__account > a:hover,
.zq-shortener-activation__account > a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 241, 53, .24);
}

.zq-shortener-activation__google:hover,
.zq-shortener-activation__google:focus-visible {
    background: #f2f2f2;
}

.zq-shortener-activation__account p {
    margin: 1px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
}

.zq-shortener-activation__account p a {
    color: var(--zq-activation-mint);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.zq-shortener-activation__trust {
    display: block;
    margin-top: 12px;
    color: #86a79d;
    font-size: 10px;
    line-height: 1.4;
}

.zq-shortener-activation__error {
    margin-top: 10px !important;
}

@media (max-width: 767px) {
    .zq-shortener {
        width: min(100% - 20px, 640px);
        margin: 42px auto;
        padding: 24px 18px 22px;
        border-radius: 20px;
    }

    .zq-shortener__header h2 {
        font-size: 24px;
    }

    .zq-shortener__field > input,
    .zq-shortener__domain-field,
    .zq-shortener__domain-field input {
        min-height: 54px;
    }

    .zq-shortener__form-actions {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .zq-shortener__button {
        min-height: 44px;
        padding: 8px 15px;
        font-size: 15px;
    }

    .zq-shortener__result {
        padding: 18px;
    }

    .zq-shortener__qr {
        grid-template-columns: 138px minmax(0, 1fr);
        gap: 14px;
    }

    .zq-shortener__qr-visual {
        width: 138px;
        height: 138px;
    }

    .zq-shortener__claim {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zq-shortener__claim .zq-shortener__button {
        width: 100%;
        grid-row: auto;
        margin-top: 6px;
    }

    .zq-shortener__benefits {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .zq-shortener__result-navigation {
        padding: 0;
    }

    .zq-shortener__result-navigation-row {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .zq-shortener__result-actions,
    .zq-shortener__result-actions .zq-shortener__button,
    .zq-shortener__result-navigation-row > .zq-shortener__button {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .zq-shortener__result-actions .zq-shortener__button {
        padding-inline: 12px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .zq-shortener-activation {
        padding: 10px;
    }

    .zq-shortener-activation__dialog {
        width: 100%;
        max-height: calc(100dvh - 20px);
        padding: 24px 18px;
    }

    .zq-shortener-activation__qr {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
    }

    .zq-shortener-activation__qr > img {
        width: 82px;
        height: 82px;
        border-radius: 12px;
    }

    .zq-shortener-activation__qr-actions button {
        min-height: 28px;
        padding-inline: 7px;
    }

    .zq-shortener {
        padding: 22px 18px 18px;
    }

    .zq-shortener__header {
        margin-bottom: 20px;
    }

    .zq-shortener__result {
        padding: 18px;
    }

    .zq-shortener__result-head {
        margin-bottom: 12px;
    }

    .zq-shortener__copy-row {
        display: grid;
        min-height: 50px;
        grid-template-columns: 48px minmax(0, 1fr) 82px;
        border-radius: 999px;
    }

    .zq-shortener__copy-row-icon {
        width: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .zq-shortener__copy-row button {
        min-width: 0;
        min-height: 40px;
        grid-column: auto;
        margin: 4px;
        padding: 0 9px;
        font-size: 12px;
    }

    .zq-shortener__copy-row > a {
        padding: 0 8px;
        font-size: 14px;
    }

    .zq-shortener__ready {
        margin-top: 10px;
    }

    .zq-shortener__smart,
    .zq-shortener__personalize {
        margin-top: 14px;
        padding-top: 14px;
    }

    .zq-shortener__personalize-head {
        margin-bottom: 10px;
    }

    .zq-shortener__personalize-actions {
        margin-top: 8px;
    }

    .zq-shortener__smart-body {
        margin-top: 12px;
    }

    .zq-shortener__smart-fields {
        gap: 10px;
        margin-top: 12px;
    }

    .zq-shortener__smart-note,
    .zq-shortener__smart-actions {
        margin-top: 10px;
    }

    .zq-shortener__qr {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .zq-shortener__qr-toggle {
        margin-top: 14px;
    }

    .zq-shortener__qr-toggle + .zq-shortener__qr {
        margin-top: 10px;
        padding-top: 10px;
    }

    .zq-shortener__qr-visual-shell {
        width: min(100%, 210px);
        margin: 0 auto;
    }

    .zq-shortener__qr-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .zq-shortener__qr-badge {
        margin-top: 7px;
    }

    .zq-shortener__qr-actions {
        margin-top: 9px;
    }

    .zq-shortener__claim {
        gap: 5px;
        margin-top: 15px;
        padding: 12px;
    }

    .zq-shortener__result-navigation-row {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
        margin-top: 12px;
    }

    .zq-shortener__result-navigation .zq-shortener__button {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .zq-shortener__result-actions .zq-shortener__button {
        padding-inline: 10px;
        font-size: 13px;
    }

    .zq-shortener__benefits {
        gap: 8px;
        margin-top: 18px;
        padding-top: 16px;
    }

    .zq-shortener__smart summary,
    .zq-shortener__personalize summary,
    .zq-shortener__subdomain summary {
        width: 100%;
        justify-content: center;
    }
}

/* Compact hero entry point: exact visual family of the validated QR/Home URL bar. */
.zq-shortener.is-entry {
    width: min(930px, calc(100% - 32px));
    max-width: 930px;
    margin: 30px auto 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.zq-shortener.is-entry .zq-shortener__header,
.zq-shortener.is-entry .zq-shortener__benefits {
    display: none;
}

.zq-shortener__visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.zq-shortener.is-entry .zq-shortener__form {
    width: 100%;
    margin: 0;
}

.zq-shortener__hero-control {
    position: relative;
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 4px;
}

.zq-shortener__hero-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 28px;
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: rgba(255, 255, 255, .68);
    pointer-events: none;
    transform: translateY(-50%);
}

.zq-shortener__hero-icon svg,
.zq-shortener__hero-button-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.zq-shortener__hero-control input {
    width: auto !important;
    min-width: 0;
    min-height: 60px;
    flex: 1 1 0;
    margin: 0;
    padding: 0 24px 0 58px !important;
    border: 2px solid #8af135 !important;
    border-radius: 999px !important;
    outline: none;
    background: rgba(8, 37, 31, .72) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: inset 0 0 0 2px rgba(138, 241, 53, .12), 0 0 0 1px rgba(0, 0, 0, .25);
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.zq-shortener__hero-control input::placeholder {
    color: rgba(255, 255, 255, .64);
    -webkit-text-fill-color: rgba(255, 255, 255, .64);
    opacity: 1;
}

.zq-shortener__hero-control input:hover,
.zq-shortener__hero-control input:focus {
    border-color: #a3ff59 !important;
    box-shadow: 0 0 0 4px rgba(138, 241, 53, .18), inset 0 0 0 1px rgba(138, 241, 53, .2) !important;
}

.zq-shortener__hero-control input:-webkit-autofill,
.zq-shortener__hero-control input:-webkit-autofill:hover,
.zq-shortener__hero-control input:-webkit-autofill:focus,
.zq-shortener__hero-control input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px #08251f inset, 0 0 0 4px rgba(138, 241, 53, .18) !important;
    box-shadow: 0 0 0 1000px #08251f inset, 0 0 0 4px rgba(138, 241, 53, .18) !important;
}

.zq-shortener__hero-control button {
    display: inline-flex;
    min-width: 260px;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #8af135;
    color: #0f2923;
    cursor: pointer;
    font-family: Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(39, 145, 2, .7);
    transition: transform .16s, box-shadow .16s, background-color .16s, color .16s;
}

.zq-shortener__hero-control button:hover,
.zq-shortener__hero-control button:focus-visible {
    background: #fff;
    color: #0f2923 !important;
    box-shadow: 0 4px 10px rgba(39, 145, 2, .7);
    transform: none;
}

.zq-shortener__hero-control button:disabled {
    cursor: wait;
    opacity: .65;
}

.zq-shortener__hero-control button.is-loading::before {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(15, 41, 35, .28);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: zqShortenerSpin .75s linear infinite;
    content: "";
}

.zq-shortener__hero-button-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.zq-shortener__hero-button-arrow {
    font-size: 20px;
}

.zq-shortener__hero-example {
    margin: 3px 0 14px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
}

.zq-shortener__hero-custom-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: -5px 0 8px;
    color: var(--zq-shortener-bg);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.zq-shortener__hero-custom-proof > span {
    display: inline-grid;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    place-items: center;
    border-radius: 50%;
    background: rgba(138, 241, 53, .18);
}

.zq-shortener__hero-trust {
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.zq-shortener__hero-trust span {
    white-space: nowrap;
}

.zq-shortener.is-entry .zq-shortener__error {
    margin: 7px 0 4px;
    padding: 7px 12px;
    border-radius: 9px;
    background: rgba(114, 28, 23, .9);
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    .zq-shortener.is-entry {
        width: min(100% - 28px, 640px);
        margin-top: 24px;
        padding: 0;
        border-radius: 0;
    }

    .zq-shortener__hero-control {
        flex-direction: column;
        gap: 10px;
    }

    .zq-shortener__hero-icon {
        top: 28px;
        left: 20px;
    }

    .zq-shortener__hero-control input,
    .zq-shortener__hero-control button {
        width: 100% !important;
        min-width: 0;
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px;
    }

    .zq-shortener__hero-control input {
        padding: 0 18px 0 52px !important;
        font-size: 15px;
    }

    .zq-shortener__hero-control button {
        font-size: 17px;
    }

    .zq-shortener__hero-example {
        margin-top: 7px;
        font-size: 12px;
    }

    .zq-shortener__hero-trust {
        font-size: 15px;
    }

    .zq-shortener__hero-custom-proof {
        margin-top: -3px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zq-shortener * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
