/**
 * Famylio Init - sensory marketing layer
 * Progressive CSS only: keep the existing /init/ structure and behavior intact.
 */

:root {
    --init-blue: #073764;
    --init-blue-ink: #12314c;
    --init-orange: #c86f58;
    --init-orange-deep: #9e5746;
    --init-orange-soft: rgba(200, 111, 88, 0.13);
    --init-button-orange: #bd715c;
    --init-button-orange-deep: #9d5d4c;
    --init-button-orange-light: #d79680;
    --init-button-orange-soft: rgba(189, 113, 92, 0.18);
    --init-sage: #5b8a72;
    --init-sage-soft: rgba(91, 138, 114, 0.14);
    --init-gold: #caa45d;
    --init-cream: #ffffff;
    --init-canvas: #ffffff;
    --init-paper: #ffffff;
    --init-paper-soft: #f7fbfc;
    --init-border: rgba(48, 39, 31, 0.1);
    --init-border-strong: rgba(48, 39, 31, 0.16);
    --init-text: #243042;
    --init-muted: #68768a;
    --init-radius-sm: 14px;
    --init-radius-md: 22px;
    --init-radius-lg: 32px;
    --init-radius-xl: 42px;
    --init-shadow-soft: 0 18px 48px rgba(23, 41, 55, 0.08);
    --init-shadow-card: 0 24px 70px rgba(23, 41, 55, 0.1);
    --init-shadow-hover: 0 30px 88px rgba(23, 41, 55, 0.13);
    --init-shadow-orange: 0 18px 42px rgba(157, 93, 76, 0.2);
    --init-readable-font: clamp(16.5px, 1.08vw, 18px);
    --init-readable-small: clamp(14px, .9vw, 15.5px);
    --init-ui-scale: clamp(.9, .72 + .02vw, 1);
    --init-transition: 190ms cubic-bezier(.2, .7, .25, 1);
    --init-transition-slow: 320ms cubic-bezier(.2, .7, .25, 1);
}

html {
    background: var(--init-canvas);
    font-size: var(--init-readable-font);
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(200, 111, 88, 0.07), transparent 28rem),
        radial-gradient(circle at 86% 8%, rgba(7, 55, 100, 0.08), transparent 30rem),
        radial-gradient(circle at 44% 104%, rgba(91, 138, 114, 0.06), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #fbfdfe 58%, #ffffff 100%);
    color: var(--init-text);
    letter-spacing: -0.01em;
    font-size: 1rem;
    line-height: 1.58;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(7, 55, 100, 0.035) .7px, transparent .7px),
        radial-gradient(rgba(200, 111, 88, 0.025) .7px, transparent .7px);
    background-position: 0 0, 12px 14px;
    background-size: 28px 28px, 38px 38px;
    opacity: .32;
    mix-blend-mode: multiply;
}

.touch-shell {
    position: relative;
    z-index: 1;
}

.touch-shell {
    width: min(100%, 1420px);
    display: grid;
    gap: clamp(20px, 2.7vh, 34px);
}

.touch-topbar {
    align-items: center;
    margin-bottom: 0;
    padding: clamp(14px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--init-radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(248, 252, 253, 0.78));
    box-shadow: var(--init-shadow-soft);
    backdrop-filter: blur(18px);
}

.touch-brand {
    min-width: 0;
}

.touch-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 1vw, 12px);
    min-width: min(100%, 360px);
}

.touch-lang-menu {
    position: relative;
}

.touch-lang-current,
.touch-lang-link,
.touch-theme-toggle {
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--init-blue-ink);
    font-weight: 850;
    text-decoration: none;
    transition:
        transform var(--init-transition),
        box-shadow var(--init-transition),
        border-color var(--init-transition),
        background-color var(--init-transition);
}

.touch-lang-current {
    padding: 9px 14px;
    border-color: rgba(48, 39, 31, 0.09);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(23, 41, 55, 0.06);
    cursor: pointer;
    font-family: inherit;
}

.touch-lang-code {
    min-width: 32px;
    padding: 5px 7px;
    border-radius: 999px;
    background: rgba(200, 111, 88, 0.12);
    color: var(--init-orange-deep);
    font-size: .72rem;
    letter-spacing: .08em;
    text-align: center;
}

.touch-lang-name {
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .84rem;
}

.touch-lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    display: grid;
    gap: 4px;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(48, 39, 31, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(23, 41, 55, 0.14);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    pointer-events: none;
    transition:
        opacity var(--init-transition),
        transform var(--init-transition);
}

.touch-lang-menu.is-open .touch-lang-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.touch-lang-link {
    justify-content: flex-start;
    padding: 10px 12px;
    width: 100%;
}

.touch-lang-link span {
    font-size: .76rem;
    letter-spacing: .08em;
}

.touch-lang-link small {
    color: var(--init-muted);
    font-size: .7rem;
    font-weight: 750;
}

.touch-lang-link.is-active,
.touch-theme-toggle {
    background: #fff;
    border-color: rgba(48, 39, 31, 0.09);
    box-shadow: 0 10px 22px rgba(58, 38, 24, 0.06);
}

.touch-lang-link.is-active span {
    color: var(--init-orange-deep);
}

.touch-theme-toggle {
    width: 44px;
    padding: 9px;
    cursor: pointer;
    background: #fff;
}

.touch-theme-toggle i {
    color: var(--init-blue);
}

.touch-logo {
    background:
        linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow:
        0 18px 40px rgba(7, 55, 100, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.touch-logo img {
    filter: drop-shadow(0 8px 16px rgba(7, 55, 100, 0.08));
}

.touch-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.touch-kicker,
.touch-badge,
.touch-pill {
    border: 1px solid rgba(91, 138, 114, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(91, 138, 114, 0.1));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84);
}

.touch-kicker {
    color: var(--init-orange-deep);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(236, 82, 12, 0.1));
    border-color: rgba(236, 82, 12, 0.14);
}

.touch-title,
.touch-family {
    color: var(--init-blue);
    text-wrap: balance;
    text-shadow: 0 12px 34px rgba(7, 55, 100, 0.08);
}

.touch-copy,
.touch-head-copy,
.touch-sidebox-copy,
.touch-hint,
.touch-scanner-meta,
.touch-empty,
.touch-footer {
    color: var(--init-muted);
}

.touch-copy,
.touch-head-copy {
    font-size: clamp(17px, 1.35vw, 19px);
    line-height: 1.78;
}

.touch-hero {
    gap: clamp(24px, 3.2vw, 42px);
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr);
}

.touch-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--init-radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 253, 254, 0.9) 100%);
    box-shadow: var(--init-shadow-card);
}

.touch-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 0%, rgba(200, 111, 88, 0.05), transparent 24rem),
        radial-gradient(circle at 92% 8%, rgba(7, 55, 100, 0.06), transparent 24rem);
    opacity: .95;
}

.touch-card > * {
    position: relative;
    z-index: 1;
}

.touch-setup-card,
.touch-panel,
.touch-dashboard-head {
    padding: clamp(20px, 2.6vw, 34px);
}

.touch-steps {
    gap: clamp(13px, 1.8vh, 18px);
    margin-top: clamp(22px, 3vh, 34px);
}

.touch-steps li {
    border: 1px solid rgba(48, 39, 31, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 253, 254, 0.88));
    box-shadow: 0 12px 30px rgba(23, 41, 55, 0.05);
    transition:
        transform var(--init-transition),
        box-shadow var(--init-transition),
        border-color var(--init-transition);
}

.touch-steps b {
    background:
        linear-gradient(135deg, var(--init-orange), #f38d64);
    box-shadow: 0 12px 22px rgba(236, 82, 12, 0.18);
}

@media (min-width: 980px) {
    .touch-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .touch-steps li {
        align-items: flex-start;
        min-height: 104px;
    }
}

.touch-btn,
.touch-action-btn {
    border-radius: var(--init-radius-md);
    transition:
        transform var(--init-transition),
        box-shadow var(--init-transition),
        background-color var(--init-transition),
        border-color var(--init-transition);
}

.touch-btn-primary {
    background:
        linear-gradient(135deg, var(--init-button-orange-deep) 0%, var(--init-button-orange) 55%, var(--init-button-orange-light) 100%);
    color: #fff;
    box-shadow: 0 18px 42px rgba(189, 95, 70, 0.2);
}

.touch-btn-secondary,
.touch-action-btn {
    border: 1px solid rgba(48, 39, 31, 0.08);
    background:
        linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
    color: var(--init-blue-ink);
    box-shadow: 0 12px 24px rgba(58, 38, 24, 0.07);
}

.touch-input-wrap,
.touch-loader,
.touch-sidebox,
.touch-empty,
.touch-item {
    border: 1px solid rgba(48, 39, 31, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 253, 0.86));
    box-shadow: 0 14px 34px rgba(23, 41, 55, 0.06);
}

.touch-input-label,
.touch-panel-meta {
    color: rgba(36, 48, 66, 0.64);
}

.touch-code-input {
    border-color: rgba(48, 39, 31, 0.12);
    background:
        linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
    color: var(--init-blue-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 10px 24px rgba(58, 38, 24, 0.06);
}

.touch-code-input::placeholder {
    color: rgba(104, 118, 138, .54);
}

.touch-code-input:focus,
input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible,
.touch-btn:focus-visible,
.touch-action-btn:focus-visible {
    outline: none;
    border-color: rgba(216, 115, 85, 0.52);
    box-shadow: 0 14px 34px rgba(58, 38, 24, 0.12);
}

.touch-status {
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(58, 38, 24, 0.06);
}

.touch-status.info {
    border-color: rgba(91, 138, 114, .18);
    background:
        linear-gradient(180deg, rgba(237, 248, 241, 0.96), rgba(219, 235, 225, 0.82));
}

.touch-status.error {
    border-color: rgba(182, 71, 45, .18);
    background:
        linear-gradient(180deg, rgba(255, 241, 237, 0.96), rgba(252, 226, 219, 0.82));
}

.touch-sidebox {
    min-height: 100%;
    border-radius: var(--init-radius-lg);
    background:
        radial-gradient(circle at 85% 10%, rgba(91, 138, 114, 0.08), transparent 18rem),
        linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
}

.touch-usage-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    padding: clamp(24px, 3vw, 38px);
}

.touch-sidebox-title,
.touch-panel-title,
.touch-item-title {
    color: var(--init-blue-ink);
}

.touch-sidebox-item {
    padding: clamp(13px, 1.6vh, 18px) 16px;
    border: 1px solid rgba(48, 39, 31, 0.065);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    font-size: clamp(.96rem, 1.04vw, 1.03rem);
    line-height: 1.55;
}

.touch-sidebox-title {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.touch-sidebox-copy {
    font-size: clamp(1rem, 1.22vw, 1.12rem);
    line-height: 1.72;
}

.touch-sidebox-item i {
    color: var(--init-orange);
}

.touch-loader i {
    color: var(--init-orange);
}

.touch-scanner-box {
    border-color: rgba(236, 82, 12, 0.14);
    background:
        linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.touch-dashboard {
    gap: clamp(18px, 2.4vw, 28px);
}

.touch-dashboard-head {
    align-items: stretch;
}

.touch-clock {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 20% 18%, rgba(236, 82, 12, .24), transparent 18rem),
        linear-gradient(150deg, #0a355c 0%, #233a50 58%, #182a3d 100%);
    box-shadow:
        0 22px 46px rgba(7, 55, 100, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.touch-clock-time {
    color: #fff;
}

.touch-clock-date {
    color: rgba(255, 255, 255, 0.76);
}

.touch-head-actions {
    align-content: start;
}

.touch-grid {
    gap: clamp(18px, 2vw, 26px);
}

.touch-panel-icon {
    background:
        linear-gradient(180deg, rgba(236, 82, 12, 0.12), rgba(91, 138, 114, 0.1));
    color: var(--init-orange);
    border: 1px solid rgba(236, 82, 12, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.touch-item {
    border-radius: var(--init-radius-md);
}

.touch-item-side {
    justify-content: flex-start;
}

.touch-pill {
    color: #41624e;
}

.touch-pill.warn {
    border-color: rgba(202, 164, 93, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 249, 235, .94), rgba(202, 164, 93, .14));
}

.touch-pill.danger {
    border-color: rgba(182, 71, 45, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 243, 239, .94), rgba(182, 71, 45, .13));
}

.touch-footer {
    border-color: rgba(48, 39, 31, 0.08);
}

.touch-footer a {
    color: var(--init-blue);
    font-weight: 850;
    text-decoration: none;
}

.touch-footer a:hover,
.touch-footer a:focus-visible {
    color: var(--init-orange-deep);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.touch-legal-footer {
    align-items: center;
    margin-top: 0;
}

.touch-toast {
    background:
        linear-gradient(135deg, #122c45, #24384f);
    box-shadow: 0 18px 42px rgba(18, 44, 69, .24);
}

@media (hover: hover) and (pointer: fine) {
    .touch-card,
    .touch-btn,
    .touch-action-btn,
    .touch-steps li,
    .touch-item,
    .touch-sidebox-item {
        will-change: transform;
    }

    .touch-card:hover,
    .touch-steps li:hover,
    .touch-item:hover,
    .touch-sidebox-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--init-shadow-hover);
    }

    .touch-btn:hover,
    .touch-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(23, 41, 55, 0.1);
    }

    .touch-btn-primary:hover {
        box-shadow: 0 22px 52px rgba(189, 95, 70, 0.26);
    }
}

.touch-btn:active,
.touch-action-btn:active {
    transform: translateY(1px) scale(.985);
}

@media (max-width: 1100px) {
    .touch-topbar {
        align-items: flex-start;
    }

    .touch-hero,
    .touch-grid,
    .touch-setup-grid {
        gap: clamp(18px, 2.4vh, 26px);
    }
}

@media (max-width: 720px) {
    .touch-topbar {
        padding: 14px;
        border-radius: 28px;
    }

    .touch-brand {
        align-items: flex-start;
        gap: 12px;
    }

    .touch-title {
        margin-top: 10px;
    }

    .touch-card,
    .touch-sidebox {
        border-radius: 26px;
    }

    .touch-setup-card,
    .touch-panel,
    .touch-dashboard-head {
        padding: 18px;
    }

    .touch-actions,
    .touch-head-actions {
        width: 100%;
    }

    .touch-actions .touch-btn,
    .touch-head-actions .touch-action-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .touch-brand {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .touch-logo {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .touch-logo img {
        width: 48px;
        height: 48px;
    }

    .touch-kicker,
    .touch-badge,
    .touch-pill {
        font-size: 10px;
    }

    .touch-title {
        font-size: clamp(25px, 9vw, 34px);
    }

    .touch-code-input {
        letter-spacing: .08em;
    }
}

html[data-touch-theme="night"] {
    color-scheme: dark;
    --init-canvas: #101922;
    --init-cream: #141f2b;
    --init-paper: #182432;
    --init-paper-soft: #1d2a39;
    --init-text: #f3f7fb;
    --init-muted: #b9c5d2;
    --init-border: rgba(255, 255, 255, 0.12);
    --init-border-strong: rgba(255, 255, 255, 0.18);
    --init-shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
    --init-shadow-card: 0 24px 70px rgba(0, 0, 0, 0.32);
    --init-shadow-hover: 0 30px 88px rgba(0, 0, 0, 0.38);
}

html[data-touch-theme="night"] body {
    background:
        radial-gradient(circle at 12% 8%, rgba(200, 111, 88, 0.16), transparent 28rem),
        radial-gradient(circle at 86% 8%, rgba(104, 148, 184, 0.14), transparent 30rem),
        linear-gradient(180deg, #0f1720 0%, #141d28 58%, #0f1720 100%);
}

html[data-touch-theme="night"] body::before {
    opacity: .18;
    mix-blend-mode: screen;
}

html[data-touch-theme="night"] .touch-card,
html[data-touch-theme="night"] .touch-topbar,
html[data-touch-theme="night"] .touch-sidebox,
html[data-touch-theme="night"] .touch-lang-current,
html[data-touch-theme="night"] .touch-lang-dropdown,
html[data-touch-theme="night"] .touch-lang-link.is-active,
html[data-touch-theme="night"] .touch-theme-toggle {
    background: linear-gradient(180deg, rgba(24, 36, 50, .94), rgba(18, 28, 40, .9));
    border-color: rgba(255, 255, 255, .12);
}

html[data-touch-theme="night"] .touch-title,
html[data-touch-theme="night"] .touch-family,
html[data-touch-theme="night"] .touch-sidebox-title,
html[data-touch-theme="night"] .touch-panel-title,
html[data-touch-theme="night"] .touch-item-title,
html[data-touch-theme="night"] .touch-lang-current,
html[data-touch-theme="night"] .touch-lang-link,
html[data-touch-theme="night"] .touch-theme-toggle,
html[data-touch-theme="night"] .touch-footer a {
    color: #f6fbff;
}

html[data-touch-theme="night"] .touch-sidebox-item,
html[data-touch-theme="night"] .touch-steps li,
html[data-touch-theme="night"] .touch-scanner-box {
    background: rgba(255, 255, 255, .055);
    border-color: rgba(255, 255, 255, .11);
}

/* Famylio five-breakpoint rhythm: wide / desktop / tablet landscape / tablet portrait / phone. */
@media (min-width: 1440px) {
    .touch-shell {
        width: min(100%, 1460px);
    }
}

@media (max-width: 1439px) {
    .touch-shell {
        width: min(100%, 1320px);
    }
}

@media (max-width: 1180px) {
    .touch-topbar {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .touch-topbar-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        overflow: visible;
        padding-bottom: 0;
    }

    .touch-hero,
    .touch-grid,
    .touch-setup-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 980px) and (max-width: 1180px) {
    .touch-hero {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
    }
}

@media (max-width: 900px) {
    html {
        font-size: 16.5px;
    }

    .touch-topbar {
        border-radius: 30px;
    }

    .touch-lang-name,
    .touch-theme-toggle .touch-sr-only {
        display: none;
    }

    .touch-lang-current,
    .touch-theme-toggle {
        min-width: 44px;
        min-height: 44px;
        padding-inline: 12px;
    }

    .touch-lang-dropdown {
        right: auto;
        left: 0;
    }
}

@media (max-width: 560px) {
    html {
        font-size: 16px;
    }

    body {
        padding-inline: 10px;
    }

    .touch-topbar {
        padding: 12px;
        border-radius: 24px;
    }

    .touch-topbar-actions {
        gap: 6px;
    }

    .touch-lang-dropdown {
        min-width: min(230px, calc(100vw - 24px));
    }
}

@media (min-width: 980px) and (max-height: 780px) {
    body {
        padding-block: 10px;
    }

    .touch-shell {
        gap: 14px;
    }

    .touch-topbar {
        padding: 10px 14px;
        border-radius: 30px;
    }

    .touch-logo {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .touch-logo img {
        width: 48px;
        height: 48px;
    }

    .touch-title {
        margin-top: 7px;
        font-size: clamp(30px, 3.2vw, 40px);
    }

    .touch-copy,
    .touch-head-copy {
        margin-top: 7px;
        font-size: 14.5px;
        line-height: 1.6;
    }

    .touch-setup-card,
    .touch-usage-card {
        padding: 18px;
    }

    .touch-input-wrap {
        margin-top: 12px;
        padding: 12px;
    }

    .touch-code-input {
        height: 58px;
        font-size: 26px;
    }

    .touch-btn {
        padding: 12px 16px;
    }

    .touch-steps {
        gap: 10px;
        margin-top: 14px;
    }

    .touch-steps li {
        min-height: 88px;
        padding: 10px 11px;
        font-size: 12.5px;
    }

    .touch-sidebox-title {
        font-size: clamp(1.24rem, 1.8vw, 1.55rem);
    }

    .touch-sidebox-copy {
        font-size: .95rem;
        line-height: 1.56;
    }

    .touch-sidebox-list {
        gap: 9px;
        margin-top: 12px;
    }

    .touch-sidebox-item {
        padding: 10px 12px;
        font-size: .88rem;
        line-height: 1.45;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
