:root {
    --ff-bg: #f3f5ef;
    --ff-paper: rgba(255, 255, 255, 0.78);
    --ff-paper-strong: rgba(255, 255, 255, 0.94);
    --ff-line: rgba(17, 24, 39, 0.08);
    --ff-text: #182027;
    --ff-muted: #5f6c78;
    --ff-accent: #0c7a5b;
    --ff-accent-soft: #dcf5ec;
    --ff-shadow: 0 20px 60px rgba(24, 32, 39, 0.10);
    --ff-radius: 28px;
    --ff-font: "Manrope", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
}

.release-widget {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 1045;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.release-widget__card,
.release-widget__icon {
    pointer-events: auto;
}

.release-widget__card {
    position: relative;
    width: min(340px, calc(100vw - 32px));
    max-height: 280px;
    overflow: hidden;
    padding: 1rem 1.05rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(109, 122, 255, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 64px rgba(39, 49, 87, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, max-height 0.24s ease, padding 0.24s ease, border-width 0.24s ease, box-shadow 0.24s ease;
}

.release-widget.is-collapsed .release-widget__card {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    border-width: 0;
    box-shadow: none;
    transform: translateY(18px) scale(0.96);
}

.release-widget__collapse {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 32, 39, 0.06);
    color: #4b5568;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.release-widget__collapse:hover {
    background: rgba(24, 32, 39, 0.1);
    color: #1c2436;
}

.release-widget__eyebrow {
    margin-bottom: 0.45rem;
    padding-right: 2rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a6cff;
}

.release-widget__title {
    margin-bottom: 0.45rem;
    padding-right: 2rem;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1d2640;
}

.release-widget__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #5f6d86;
}

.release-widget__inline-link {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4d63ff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.release-widget__icon {
    position: relative;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #5d71ff 0%, #7f5dff 55%, #ff6b6b 100%);
    color: #fff;
    box-shadow: 0 18px 42px rgba(79, 97, 255, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.release-widget__icon svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
}

.release-widget__pulse {
    position: absolute;
    inset: 8px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.44);
    animation: release-widget-pulse 2.2s ease-out infinite;
}

@keyframes release-widget-pulse {
    0% {
        opacity: 0.9;
        transform: scale(0.92);
    }

    70% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

.release-report__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.release-report__meta-item {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(109, 122, 255, 0.08);
    border: 1px solid rgba(109, 122, 255, 0.1);
}

.release-report__meta-label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7080a2;
}

.release-report__field {
    display: block;
}

.release-report__field-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1d2640;
}

.release-report__textarea {
    min-height: 130px;
    resize: vertical;
    border-radius: 18px;
    padding: 0.9rem 1rem;
}

@media (max-width: 767.98px) {
    .release-widget {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }

    .release-widget__card {
        width: min(320px, calc(100vw - 28px));
        padding: 0.95rem 1rem;
        border-radius: 22px;
    }

    .release-widget__title {
        font-size: 1.08rem;
    }

    .release-widget__text {
        font-size: 0.92rem;
    }

    .release-widget__icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .release-widget__icon svg {
        width: 24px;
        height: 24px;
    }

    .release-report__meta {
        grid-template-columns: 1fr;
    }
}

[data-menu-editor-v3] .menu-editor-toolbar-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

[data-menu-editor-v3].menu-editor-page--constructor {
    display: block;
    --meal-grid-offset-left: 46px;
    --meal-grid-offset-right: 30px;
    --meal-col-section: 126px;
    --meal-col-recipe: 108px;
    --meal-col-metric: 56px;
    --meal-cell-pad-x: 8px;
    --meal-select-pad-left: 10px;
    --meal-select-pad-right: 28px;
    --meal-section-pad-left: 24px;
}

[data-menu-editor-v3].menu-editor-page--constructor .menu-editor-main {
    display: grid;
    gap: 1rem;
}

[data-menu-editor-v3] .menu-constructor-meta-card,
[data-menu-editor-v3] .menu-constructor-toolbar-card {
    padding: 1.5rem 1.8rem;
    border: 1px solid #dddff9;
    background: #f8f9ff;
    box-shadow: none;
}

[data-menu-editor-v3] .menu-constructor-meta-card__label {
    color: #6f7b97;
    font-size: .95rem;
}

[data-menu-editor-v3] .menu-constructor-inline-input {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #182c57;
    font-size: 1rem;
    box-shadow: none;
    outline: none;
}

[data-menu-editor-v3] .menu-constructor-inline-input:focus {
    border-bottom: 1px solid rgba(95, 113, 255, .5);
}

[data-menu-editor-v3] .menu-constructor-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

[data-menu-editor-v3] .menu-editor-field--compact {
    min-width: 220px;
}

[data-menu-editor-v3] .menu-constructor-toolbar__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

[data-menu-editor-v3] .menu-save-indicator--inline {
    min-height: 44px;
    margin-left: auto;
}

[data-menu-editor-v3] .menu-editor-toolbar-actions {
    justify-content: flex-end;
}

[data-menu-editor-v3] .menu-editor-sheet {
    gap: 1.1rem;
}

[data-menu-editor-v3] .meal-constructor-card {
    padding: 1.35rem 1.9rem 1.5rem;
    border: 1px solid rgba(91, 107, 205, .12);
    background: #ffffff;
    box-shadow: none;
    overflow: visible;
}

[data-menu-editor-v3] .__intake-wrapper {
    margin: 0;
    overflow: visible;
}

[data-menu-editor-v3] .meal-intake-title-shell {
    display: inline-flex;
    align-items: center;
    border-bottom: 2px dashed rgba(95, 113, 255, .8);
    position: relative;
    overflow: visible;
    cursor: pointer;
}

[data-menu-editor-v3] .menu-intake-title-select {
    width: auto;
    min-width: 0;
    padding: 0 1.1rem 0 0;
    border: 0 !important;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none !important;
    color: #19274d;
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

[data-menu-editor-v3] .menu-intake-title-select:disabled,
[data-menu-editor-v3] .menu-grid-select:disabled {
    opacity: 1;
    color: #1c2953;
    -webkit-text-fill-color: currentColor;
    pointer-events: none;
}

[data-menu-editor-v3] .meal-constructor-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

[data-menu-editor-v3] .meal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: .75rem 1.35rem;
    border: 1px solid rgba(123, 136, 182, .22);
    border-radius: 14px;
    background: rgba(245, 246, 255, .92);
    color: #29385f;
    font-size: 1.02rem;
    font-weight: 700;
    transition: transform .16s ease, border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

[data-menu-editor-v3] .meal-action-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(95, 113, 255, .32);
    box-shadow: 0 14px 30px rgba(60, 74, 136, .08);
}

[data-menu-editor-v3] .meal-action-btn--danger {
    background: rgba(248, 208, 214, .7);
    color: #a24255;
    border-color: rgba(214, 123, 143, .24);
}

[data-menu-editor-v3] .meal-action-btn--wide {
    width: 100%;
    max-width: 360px;
}

[data-menu-editor-v3] .meal-constructor-head {
    color: #7b86a6;
    font-size: .82rem;
    font-weight: 700;
    text-transform: none;
    padding-left: var(--meal-grid-offset-left);
    padding-right: var(--meal-grid-offset-right);
}

[data-menu-editor-v3] .__meal-row {
    position: relative;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: var(--meal-grid-offset-left);
    padding-right: var(--meal-grid-offset-right);
    border-bottom: 1px solid rgba(145, 162, 221, .46);
}

[data-menu-editor-v3] .__meal-row:last-child {
    border-bottom: 2px solid rgba(145, 162, 221, .8);
}

[data-menu-editor-v3] .__meal-row-number,
[data-menu-editor-v3] .__remove-meal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

[data-menu-editor-v3] .__meal-row-number {
    left: 16px;
    width: 1.65rem;
    color: #98a4da;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
}

[data-menu-editor-v3] .__remove-meal {
    right: 6px;
    left: auto;
    width: .95rem;
    height: .95rem;
    padding: 0;
    border: 0;
    background: transparent;
}

[data-menu-editor-v3] .__remove-meal::before,
[data-menu-editor-v3] .__remove-meal::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 18px;
    border-radius: 999px;
    background: #e59ca9;
    transform-origin: center;
}

[data-menu-editor-v3] .__remove-meal::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

[data-menu-editor-v3] .__remove-meal::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

[data-menu-editor-v3] .__fc {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: .55rem var(--meal-cell-pad-x);
    border: 0.5pt solid rgba(145, 162, 221, .85);
    border-radius: 0 !important;
    background: #ffffff;
    color: #22335c;
    box-shadow: none;
    transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

[data-menu-editor-v3] .__fc-xs-xs {
    min-height: 38px;
    font-size: .92rem;
}

[data-menu-editor-v3] .__fc-md,
[data-menu-editor-v3] .__fc-lg {
    min-height: 42px;
}

[data-menu-editor-v3] .__fc:focus,
[data-menu-editor-v3] .menu-grid-input.is-editing,
[data-menu-editor-v3] .menu-grid-select.is-editing,
[data-menu-editor-v3] .menu-intake-title-select.is-editing {
    background: #fdfdfd;
    border-color: rgba(95, 113, 255, .75) !important;
    box-shadow: inset 0 -2px 0 rgba(95, 113, 255, .42);
    outline: 0;
}

[data-menu-editor-v3] .menu-grid-input,
[data-menu-editor-v3] .menu-grid-select {
    font-weight: 600;
}

[data-menu-editor-v3] .menu-grid-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    font-size: 1.06rem;
    padding-left: var(--meal-select-pad-left);
    padding-right: var(--meal-select-pad-right);
}

[data-menu-editor-v3] .meal-grid-cell--section .menu-grid-select {
    font-size: .92rem;
    padding-left: var(--meal-section-pad-left);
}

[data-menu-editor-v3] .menu-grid-input[readonly] {
    cursor: default;
    background: #fbfcff;
}

[data-menu-editor-v3] .menu-grid-input--wide {
    font-weight: 700;
}

[data-menu-editor-v3] .meal-grid-row {
    display: grid;
    grid-template-columns: var(--meal-col-section) var(--meal-col-recipe) minmax(0, 1fr) repeat(6, var(--meal-col-metric));
    align-items: stretch;
    width: 100%;
    margin: 0;
}

[data-menu-editor-v3] .meal-grid-cell {
    min-width: 0;
    display: flex;
}

[data-menu-editor-v3] .meal-grid-cell--summary-label {
    grid-column: 1 / 4;
}

[data-menu-editor-v3] .meal-grid-row--head .meal-grid-cell {
    align-items: flex-end;
    min-height: 28px;
    padding: 0 var(--meal-cell-pad-x);
    color: #7b86a6;
    font-size: .82rem;
    font-weight: 700;
}

[data-menu-editor-v3] .meal-grid-row--head .meal-grid-cell--section {
    padding-left: var(--meal-section-pad-left);
}

[data-menu-editor-v3] .meal-grid-row--head .meal-grid-cell--metric {
    justify-content: center;
    text-align: center;
    font-size: .72rem;
    letter-spacing: -.02em;
    overflow: hidden;
}

[data-menu-editor-v3] .meal-grid-row .menu-grid-select-shell,
[data-menu-editor-v3] .meal-grid-row [data-suggest-cell],
[data-menu-editor-v3] .meal-grid-row .meal-grid-cell--metric {
    width: 100%;
}

[data-menu-editor-v3] .meal-grid-row--summary {
    border-top: 2px solid rgba(145, 162, 221, .8);
  
    width: calc(96% + 7px)
}


   

[data-menu-editor-v3] .meal-grid-row--summary .meal-grid-cell--summary-label {
    margin-right: -1px;
}

[data-menu-editor-v3] .meal-grid-main,
[data-menu-editor-v3] .meal-grid-metrics {
    padding-left: 0;
    padding-right: 0;
}

[data-menu-editor-v3] .meal-grid-main__row,
[data-menu-editor-v3] .meal-grid-metrics__row {
    margin: 0;
    --bs-gutter-x: 0;
    align-items: stretch;
}

[data-menu-editor-v3] .meal-grid-main__row {
    display: grid;
    grid-template-columns: var(--meal-col-section) var(--meal-col-recipe) minmax(0, 1fr);
}

[data-menu-editor-v3] .meal-grid-metrics__row {
    display: grid;
    grid-template-columns: repeat(6, minmax(var(--meal-col-metric), 1fr));
}

[data-menu-editor-v3] .meal-grid-main__row > [class*="col-"],
[data-menu-editor-v3] .meal-grid-metrics__row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

[data-menu-editor-v3] .__intake-summary .row {
    margin: 0;
    padding-left: 68px;
    padding-right: 29px;
    --bs-gutter-x: 0;
}

[data-menu-editor-v3] .__intake-summary {
    padding-left: 0;
    padding-right: 0;
}

[data-menu-editor-v3] .meal-grid-main--summary,
[data-menu-editor-v3] .meal-grid-metrics--summary {
    padding-top: 0;
}

@media (min-width: 992px) {
    [data-menu-editor-v3] .meal-grid-row--summary .meal-grid-cell--metric .__fc {
        border-top: 0;
    }
}

[data-menu-editor-v3] .menu-grid-select-shell {
    position: relative;
    overflow: visible;
    z-index: 5;
    cursor: pointer;
}

[data-menu-editor-v3] [data-suggest-cell] {
    position: relative;
}

[data-menu-editor-v3] .menu-row-suggestions {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 40;
    display: grid;
    gap: .35rem;
    min-width: min(420px, calc(100vw - 3rem));
    max-height: 320px;
    padding: .65rem;
    overflow-y: auto;
    border: 1px solid rgba(145, 162, 221, .9);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(34, 51, 92, .16);
}

[data-menu-editor-v3] .menu-row-suggestions__hint {
    color: #6978a6;
    font-size: .78rem;
    font-weight: 700;
}

[data-menu-editor-v3] .menu-row-suggestion {
    display: grid;
    gap: .2rem;
    width: 100%;
    padding: .65rem .75rem;
    border: 1px solid rgba(145, 162, 221, .55);
    background: #f8faff;
    color: #22335c;
    text-align: left;
    transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

[data-menu-editor-v3] .menu-row-suggestion:hover,
[data-menu-editor-v3] .menu-row-suggestion:focus {
    border-color: rgba(95, 113, 255, .75);
    background: #eef2ff;
    outline: 0;
    transform: translateY(-1px);
}

[data-menu-editor-v3] .menu-row-suggestion__title {
    font-size: .95rem;
    font-weight: 800;
}

[data-menu-editor-v3] .menu-row-suggestion__meta {
    color: #65749f;
    font-size: .78rem;
}

[data-menu-editor-v3] .menu-grid-select-shell::after,
[data-menu-editor-v3] .meal-intake-title-shell::after {
    content: "";
    position: absolute;
    right: .6rem;
    top: 50%;
    width: .58rem;
    height: .58rem;
    border-right: 2px solid #6776b1;
    border-bottom: 2px solid #6776b1;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

[data-menu-editor-v3] .meal-intake-title-shell::after {
    right: -.05rem;
}

[data-menu-editor-v3] .meal-intake-title-shell.is-editing::after,
[data-menu-editor-v3] .menu-grid-select-shell.is-editing::after {
    transform: translateY(-30%) rotate(-135deg);
}

[data-menu-editor-v3] .meal-summary-label {
    justify-content: flex-end;
    background: rgba(245, 247, 255, .9);
    padding-right: var(--meal-cell-pad-x);
}

[data-menu-editor-v3] .meal-summary-box {
    justify-content: flex-end;
}

[data-menu-editor-v3] .meal-constructor-head .text-muted {
    display: flex;
    align-items: flex-end;
    min-height: 2rem;
    padding: 0 var(--meal-cell-pad-x) !important;
}

[data-menu-editor-v3] .meal-constructor-head .meal-grid-main__row > :nth-child(1) {
    padding-left: var(--meal-select-pad-left) !important;
}

[data-menu-editor-v3] .meal-constructor-head .meal-grid-main__row > :nth-child(2),
[data-menu-editor-v3] .meal-constructor-head .meal-grid-main__row > :nth-child(3),
[data-menu-editor-v3] .meal-constructor-head .meal-grid-metrics__row > * {
    padding-left: var(--meal-cell-pad-x) !important;
}

[data-menu-editor-v3] .meal-intake-title-shell.is-editing,
[data-menu-editor-v3] .menu-grid-select-shell.is-editing {
    z-index: 55;
}

[data-menu-editor-v3] .meal-intake-title-shell.is-editing .menu-intake-title-select,
[data-menu-editor-v3] .menu-grid-select-shell.is-editing .menu-grid-select {
    border-color: rgba(95, 113, 255, .75) !important;
    box-shadow: inset 0 -2px 0 rgba(95, 113, 255, .42);
}

[data-menu-editor-v3] .menu-select-popover {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2400;
    display: grid;
    gap: .4rem;
    min-width: 250px;
    max-width: min(340px, calc(100vw - 24px));
    max-height: min(340px, calc(100vh - 24px));
    padding: .65rem;
    overflow-y: auto;
    border: 1px solid rgba(145, 162, 221, .9);
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 22px 44px rgba(34, 51, 92, .18);
    border-radius: 18px;
}

[data-menu-editor-v3] .menu-select-popover--top {
    transform-origin: bottom left;
}

[data-menu-editor-v3] .menu-select-popover--align-right {
    transform-origin: top right;
}

[data-menu-editor-v3] .meal-intake-title-shell .menu-select-popover {
    min-width: 260px;
}

[data-menu-editor-v3] .menu-select-popover__label {
    color: #5a6993;
    font-size: .92rem;
    font-weight: 800;
}

[data-menu-editor-v3] .menu-select-popover__current {
    padding: .15rem 0 .35rem;
    color: #1c2953;
    font-size: 1rem;
    font-weight: 700;
}

[data-menu-editor-v3] .menu-select-popover__options {
    display: grid;
    gap: .1rem;
    max-height: 250px;
    overflow-y: auto;
}

[data-menu-editor-v3] .menu-select-popover__option {
    width: 100%;
    padding: .5rem .65rem;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #1c2953;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: left;
}

[data-menu-editor-v3] .menu-select-popover__option:hover,
[data-menu-editor-v3] .menu-select-popover__option:focus,
[data-menu-editor-v3] .menu-select-popover__option.is-active {
    background: #3f73ca;
    color: #ffffff;
    outline: 0;
}

[data-menu-editor-v3] .menu-select-popover__option.is-disabled,
[data-menu-editor-v3] .menu-select-popover__option:disabled {
    opacity: .42;
    cursor: not-allowed;
    background: transparent;
    color: #6f7b97;
}

[data-menu-editor-v3] .meal-action-btn:disabled {
    cursor: not-allowed;
    opacity: .58;
    transform: none;
    box-shadow: none;
}

[data-menu-editor-v3] .meal-constructor-head > [class*="col-"],
[data-menu-editor-v3] .__meal-row > [class*="col-"],
[data-menu-editor-v3] .__intake-summary .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

[data-menu-editor-v3] .__intake-summary .__fc {
    font-weight: 800;
    background: rgba(245, 247, 255, .9);
}

[data-menu-editor-v3] .menu-constructor-footer {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 1199.98px) {

    [data-menu-editor-v3] .meal-grid-row--summary {
    border-top: 2px solid rgba(145, 162, 221, .8);
   width: calc(95% + 4px);
}


    [data-menu-editor-v3] .meal-constructor-actions {
        justify-content: flex-start;
    }

    [data-menu-editor-v3] .menu-constructor-toolbar {
        align-items: stretch;
    }
}

@media (max-width: 991.98px) {
    [data-menu-editor-v3] .menu-editor-toolbar-grid--compact {
        grid-template-columns: 1fr;
    }

    [data-menu-editor-v3] .meal-grid-main__row,
    [data-menu-editor-v3] .meal-grid-metrics__row,
    [data-menu-editor-v3] .meal-grid-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    [data-menu-editor-v3] .meal-constructor-card {
        padding: 1.1rem;
    }

    [data-menu-editor-v3] .menu-constructor-meta-card,
    [data-menu-editor-v3] .menu-constructor-toolbar-card {
        padding: 1.15rem;
    }

    [data-menu-editor-v3] .__meal-row {
        padding-left: 2.35rem;
        padding-right: .45rem;
    }

    [data-menu-editor-v3] .__intake-summary .row {
        padding-left: 2.35rem;
        padding-right: .45rem;
    }

    [data-menu-editor-v3] .__intake-summary {
        padding-left: 2.35rem;
        padding-right: .45rem;
    }

    [data-menu-editor-v3] .meal-grid-cell--summary-label {
        grid-column: auto;
    }

    [data-menu-editor-v3] .__meal-row-number {
        top: 1.05rem;
        transform: none;
    }

    [data-menu-editor-v3] .__remove-meal {
        top: 1.05rem;
        transform: none;
    }
}

@media (max-width: 767.98px) {
[data-menu-editor-v3] .meal-grid-row--summary {
    border-top: 2px solid rgba(145, 162, 221, .8);
   width: calc(95% + 4px);
}
    
    [data-menu-editor-v3] .menu-intake-title-select {
        font-size: 1.8rem;
    }

    [data-menu-editor-v3] .menu-constructor-toolbar__actions {
        width: 100%;
    }

    [data-menu-editor-v3] .menu-constructor-toolbar__actions .btn {
        width: 100%;
    }

    [data-menu-editor-v3] .meal-action-btn,
    [data-menu-editor-v3] .meal-action-btn--wide {
        width: 100%;
    }
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body.app-shell {
    margin: 0;
    color: var(--ff-text);
    background: radial-gradient(circle at top left, #fff9dc 0, transparent 26%),
        linear-gradient(180deg, #eef3e8 0%, #f7f8f3 100%);
    font-family: var(--ff-font);
}

.site-bg { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
.site-orb { position: absolute; border-radius: 999px; filter: blur(22px); opacity: .55; }
.orb-a { width: 280px; height: 280px; top: -60px; right: 8%; background: rgba(255, 216, 112, .55); }
.orb-b { width: 240px; height: 240px; bottom: 12%; left: -40px; background: rgba(12, 122, 91, .16); }
.site-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(24,32,39,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(24,32,39,.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.18), transparent 92%);
}

.topbar { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(16px); background: rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.6); }
.navbar { min-height: 78px; }
.brandmark { display: inline-flex; align-items: center; gap: .75rem; font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; color: var(--ff-text); text-decoration: none; }
.brandmark__dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, #0c7a5b, #ffd870); box-shadow: 0 0 0 8px rgba(12,122,91,.12); }
.nav-link { color: rgba(24,32,39,.72); font-weight: 600; }
.nav-link.active, .nav-link:hover { color: var(--ff-text); }

.page-wrap { position: relative; padding: 2rem 0 4rem; }
.glass-panel, .hero-card {
    background: var(--ff-paper);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: var(--ff-shadow);
    border-radius: var(--ff-radius);
    backdrop-filter: blur(20px);
}
.hero-card { padding: 2rem; margin-top: 1rem; }
.eyebrow { display: inline-flex; padding: .4rem .85rem; border-radius: 999px; background: var(--ff-accent-soft); color: var(--ff-accent); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.lead { font-size: 1.08rem; }

.stat-panel { padding: 1.5rem; }
.stat-panel__header { font-weight: 800; margin-bottom: 1rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.stat-grid--single { grid-template-columns: 1fr; }
.stat-chip {
    background: var(--ff-paper-strong);
    border: 1px solid var(--ff-line);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.stat-chip span { font-size: .9rem; color: var(--ff-muted); }

.info-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0 0; }
.info-strip__item { padding: 1.2rem 1.3rem; background: rgba(255,255,255,.74); border: 1px solid rgba(17,24,39,.06); border-radius: 22px; box-shadow: 0 12px 32px rgba(24,32,39,.06); }
.info-strip__label { display: block; color: var(--ff-muted); font-size: .84rem; margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .05em; }

.soft-alert { border-radius: 18px; border: 0; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.auth-shell { padding: 2rem 0; }
.auth-card { padding: 2rem; }
.auth-foot { color: var(--ff-muted); }

.dashboard-hero { padding: 1.5rem 1.75rem; }
.resource-box { background: var(--ff-paper-strong); border: 1px solid var(--ff-line); border-radius: 24px; padding: 1rem 1.1rem; }
.resource-box__title { color: var(--ff-muted); font-size: .85rem; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.resource-box__link { color: var(--ff-text); font-weight: 700; text-decoration: none; word-break: break-all; }
.resource-box__link:hover { color: var(--ff-accent); }

.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.dropzone {
    min-height: 200px;
    border-radius: 24px;
    border: 1.5px dashed rgba(12,122,91,.35);
    background: linear-gradient(180deg, rgba(12,122,91,.05), rgba(255,255,255,.9));
    display: grid;
    place-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    padding: 1rem;
}
.dropzone:hover, .dropzone.is-dragover { transform: translateY(-2px); border-color: var(--ff-accent); box-shadow: 0 16px 36px rgba(12,122,91,.12); }
.dropzone__title { font-weight: 800; font-size: 1.05rem; display: block; }
.dropzone__text { color: var(--ff-muted); display: block; margin-top: .4rem; }

.calendar-box { background: var(--ff-paper-strong); border-radius: 24px; border: 1px solid var(--ff-line); padding: 1rem; }
.calendar-box__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.calendar-box__title { font-weight: 800; }
.calendar-nav { width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(12,122,91,.08); color: var(--ff-accent); font-size: 1.2rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .45rem; }
.calendar-day {
    aspect-ratio: 1/1;
    border-radius: 16px;
    background: rgba(24,32,39,.04);
    position: relative;
    display: grid;
    place-items: center;
    padding: .3rem;
    font-size: .92rem;
    line-height: 1.05;
    color: var(--ff-text);
    border: 0;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.calendar-day__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.calendar-day__summary {
    position: absolute;
    top: .28rem;
    right: .28rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .12rem;
    pointer-events: none;
}
.calendar-day__summary-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: .08rem .32rem;
    border-radius: 999px;
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
}
.calendar-day__summary-item.is-error {
    background: rgba(198, 73, 73, .14);
    color: #a24141;
}
.calendar-day__summary-item.is-warning {
    background: rgba(167, 100, 22, .12);
    color: #a76416;
}
.calendar-day.is-label { aspect-ratio: auto; background: transparent; font-size: .72rem; color: var(--ff-muted); text-transform: uppercase; }
.calendar-day.is-empty { background: transparent; }
.calendar-day.has-menu,
.calendar-day.is-empty-slot { cursor: pointer; }
.calendar-day.is-future-slot {
    background: rgba(95,113,255,.06);
    color: #55638f;
    cursor: pointer;
}
.calendar-day.is-future-slot:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(95,113,255,.12);
}
.calendar-day.is-status-clean {
    background: rgba(115, 194, 132, .18);
    color: #2c7a43;
    font-weight: 800;
}
.calendar-day.is-status-clean:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(44, 122, 67, .14);
}
.calendar-day.is-status-issues {
    background: rgba(115, 194, 132, .18);
    color: #2c7a43;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(167, 100, 22, .18);
}
.calendar-day.is-status-issues:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(167, 100, 22, .22),
        0 10px 24px rgba(44, 122, 67, .14);
}
.calendar-day.is-status-missing {
    background: rgba(239, 141, 141, .18);
    color: #b05555;
}
.calendar-day.is-status-missing:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(176, 85, 85, .12);
}
.calendar-day.is-today { outline: 2px solid rgba(12,122,91,.28); }

.foodblock-list { display: grid; gap: .75rem; }
.foodblock-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255,255,255,.85);
    border: 1px solid var(--ff-line);
    border-radius: 20px;
    padding: .95rem 1rem;
}
.foodblock-pill.is-active { border-color: rgba(12,122,91,.26); box-shadow: inset 0 0 0 1px rgba(12,122,91,.14); }
.foodblock-pill__actions { display: flex; gap: .5rem; flex-wrap: wrap; }

.dashboard-table thead th { color: var(--ff-muted); font-weight: 700; border-bottom-color: rgba(24,32,39,.08); }
.dashboard-table td, .dashboard-table th { background: transparent; }
.badge-soft { display: inline-flex; align-items: center; padding: .35rem .7rem; border-radius: 999px; background: rgba(24,32,39,.06); color: var(--ff-text); font-weight: 700; }
.table-link { color: var(--ff-accent); text-decoration: none; font-weight: 700; }

.dashboard-side { display: grid; gap: 0; }
.resource-section { margin-top: 1.2rem; display: grid; gap: .65rem; }
.resource-section__title { font-size: .84rem; font-weight: 800; color: var(--ff-muted); text-transform: uppercase; letter-spacing: .05em; }
.resource-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: .85rem;
    padding: .85rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--ff-line);
    text-decoration: none;
    color: var(--ff-text);
}
.resource-item:hover { color: var(--ff-accent); border-color: rgba(12,122,91,.22); }
.resource-item__name {
    display: block;
    font-weight: 700;
    min-width: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.resource-item__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: .55rem;
    width: 100%;
}
.resource-item__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
}
.resource-item__actions--stack {
    grid-template-columns: minmax(0, 1fr);
}
.resource-item__actions--stack > form {
    display: block !important;
    width: 100%;
}
.resource-item.is-missing {
    color: #9d5b68;
    background: rgba(214, 91, 111, 0.08);
    border-color: rgba(214, 91, 111, 0.22);
    cursor: default;
}
.resource-item.is-missing strong { color: #b74c5d; }

.promo-banner-card {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.94));
    border: 1px solid var(--ff-line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.88);
}

.promo-banner-card--horizontal {
    margin-inline: auto;
}

.promo-banner-card__head {
    display: grid;
    gap: 0.25rem;
}

.promo-banner-card__title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ff-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promo-banner-card__lead {
    color: var(--ff-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.promo-banner {
    display: grid;
    gap: 0.75rem;
}

.promo-banner__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(24, 32, 39, 0.12);
}

.promo-banner--vertical .promo-banner__viewport {
    aspect-ratio: 2 / 3;
}

.promo-banner--horizontal .promo-banner__viewport {
    aspect-ratio: 1774 / 887;
}

.promo-banner__slide {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: transparent;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.7s ease;
    pointer-events: none;
    cursor: pointer;
}

.promo-banner__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.promo-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.promo-banner__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.promo-banner__dot {
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 32, 39, 0.16);
    transition: width 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.promo-banner__dot.is-active {
    width: 2rem;
    background: var(--ff-accent);
    transform: translateY(-1px);
}

.promo-contact-modal__actions {
    display: grid;
    gap: 0.75rem;
}

.promo-contact-modal__link {
    width: 100%;
    min-height: 4.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 14px 28px rgba(24, 32, 39, 0.08);
}

.promo-contact-modal__link:hover {
    transform: translateY(-1px);
}

.promo-contact-modal__link span {
    display: block;
    width: 100%;
    text-align: center;
}

.promo-contact-modal__link--max {
    color: #fff;
    background: linear-gradient(135deg, #1f5eff 0%, #3b82ff 45%, #28d7ff 100%);
}

.promo-contact-modal__link--max:hover {
    color: #fff;
    background: linear-gradient(135deg, #1a53eb 0%, #3477ff 45%, #22c6ee 100%);
}

.promo-contact-modal__link--phone {
    color: #1f2d45;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,252,0.98));
    border-color: rgba(24, 32, 39, 0.12);
}

.promo-contact-modal__link--phone:hover {
    color: #1f2d45;
    background: linear-gradient(180deg, rgba(250,252,255,1), rgba(238,244,251,1));
}

.promo-contact-modal__link--site {
    color: #7a5600;
    background: linear-gradient(180deg, #ffeeb4 0%, #ffe29b 100%);
    border-color: rgba(201, 149, 16, 0.28);
}

.promo-contact-modal__link--site:hover {
    color: #6e4d00;
    background: linear-gradient(180deg, #ffea9d 0%, #ffd777 100%);
}

@media (max-width: 575.98px) {
    .resource-item__actions {
        grid-template-columns: 1fr;
    }

    .promo-banner--horizontal .promo-banner__viewport {
        aspect-ratio: 1774 / 887;
    }
}

.dashboard-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.meta-card {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--ff-line);
}
.meta-card__label { font-size: .82rem; color: var(--ff-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .45rem; }
.meta-card__value { font-weight: 800; }
.meta-card__subtext {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.65rem;
    color: var(--ff-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.meta-card--link {
    display: grid;
    gap: 0.7rem;
}

.copy-panel {
    display: grid;
    gap: 0.7rem;
}

.copy-panel__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.copy-panel__input {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--ff-line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ff-text);
    font-size: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.copy-panel__input:focus {
    outline: none;
}

.copy-panel__button {
    white-space: nowrap;
}

.copy-panel__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pricing-card { display: grid; gap: .9rem; }
.pricing-card--accent { border-top: 3px solid rgba(12,122,91,.3); padding-top: .2rem; }
.pricing-card__price { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; }
.pricing-card__period { color: var(--ff-muted); }
.pricing-list { margin: 0; padding-left: 1.1rem; color: var(--ff-text); display: grid; gap: .55rem; }
.pricing-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(24, 32, 39, 0.08);
    background: rgba(255, 255, 255, 0.82);
}

.pricing-table thead th {
    padding: 1rem 1.1rem;
    background: rgba(246, 248, 255, 0.96);
    color: var(--ff-muted);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(24, 32, 39, 0.08);
}

.pricing-table tbody td {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(24, 32, 39, 0.08);
    vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-table__amount,
.pricing-table__saving {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ff-text);
}

.pricing-table__saving {
    color: var(--ff-accent-strong);
}

.pricing-table__saving--empty {
    color: var(--ff-text);
}

.pricing-table__meta {
    margin-top: 0.2rem;
    color: var(--ff-muted);
    font-size: 0.88rem;
}

.stats-board { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
.stats-board__item {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255,255,255,.8);
    border: 1px solid var(--ff-line);
    box-shadow: 0 12px 30px rgba(24,32,39,.05);
}
.stats-board__item span { display: block; color: var(--ff-muted); font-size: .85rem; margin-bottom: .25rem; }
.stats-board__item strong { font-size: 1.45rem; }

.editor-meta-list { display: grid; gap: 1rem; }
.editor-toolbar .form-select { min-width: 220px; }
.meal-editor-card { overflow: hidden; }
.meal-editor-table .form-control,
.meal-editor-table .form-select { min-height: 40px; font-size: .92rem; }
.meal-editor-total-row td { font-weight: 800; background: rgba(24,32,39,.03); }

.menu-editor-page {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.menu-editor-sidebar,
.menu-editor-hero,
.meal-grid-card,
.menu-protocol-card {
    padding: 1.5rem;
}

[data-resource-editor].resource-editor-page {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

[data-resource-editor] .resource-editor-toolbar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

[data-resource-editor] .menu-editor-main,
[data-resource-editor] .resource-editor-sheet-card,
[data-resource-editor] .menu-protocol-card {
    min-width: 0;
    max-width: 100%;
}

[data-resource-editor] .resource-editor-sheet-card {
    padding: 1.5rem;
    overflow: hidden;
}

[data-resource-editor] .resource-editor-grid-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-top: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(85, 101, 166, .12);
    background: rgba(255, 255, 255, .96);
}

[data-resource-editor] .resource-editor-grid {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

[data-resource-editor] .resource-editor-grid thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: .85rem .7rem;
    background: #f7f9ff;
    border-bottom: 1px solid rgba(85, 101, 166, .14);
    color: #7180a5;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
}

[data-resource-editor] .resource-editor-grid__index {
    position: sticky;
    left: 0;
    z-index: 3;
    min-width: 64px;
    background: #f7f9ff;
}

[data-resource-editor] .resource-editor-grid tbody th.resource-editor-grid__index {
    border-right: 1px solid rgba(85, 101, 166, .08);
    border-bottom: 1px solid rgba(85, 101, 166, .08);
    text-align: center;
    color: #7180a5;
    font-size: .82rem;
    font-weight: 800;
}

[data-resource-editor] .resource-editor-grid__cell {
    min-width: 148px;
    padding: 0;
    border-right: 1px solid rgba(85, 101, 166, .08);
    border-bottom: 1px solid rgba(85, 101, 166, .08);
    background: rgba(255, 255, 255, .98);
}

[data-resource-editor] .resource-editor-grid__input,
[data-resource-editor] .resource-editor-grid__readonly {
    width: 100%;
    min-height: 46px;
    padding: .72rem .82rem;
    border: 0;
    background: transparent;
    color: #1f2a4d;
    font-size: .95rem;
    line-height: 1.35;
}

[data-resource-editor] .resource-editor-grid__input:focus {
    outline: 0;
    background: rgba(92, 109, 255, .08);
    box-shadow: inset 0 0 0 2px rgba(92, 109, 255, .16);
}

[data-resource-editor] .resource-editor-grid__cell.is-readonly {
    background: rgba(243, 246, 255, .92);
}

[data-resource-editor] .resource-editor-grid__cell.is-merged {
    background: rgba(247, 248, 252, .98);
}

[data-resource-editor] .resource-editor-grid__readonly {
    color: #7b86a4;
    cursor: default;
}

@media (max-width: 1199px) {
    [data-resource-editor].resource-editor-page {
        grid-template-columns: 1fr;
    }

    [data-resource-editor] .menu-editor-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 767px) {
    [data-resource-editor] .resource-editor-toolbar-grid {
        grid-template-columns: 1fr;
    }

    [data-resource-editor] .resource-item,
    [data-resource-editor] .resource-item__actions,
    .resource-item {
        align-items: flex-start;
    }
}

.menu-editor-sidebar {
    position: sticky;
    top: 104px;
}

.menu-editor-sidebar__stack {
    display: grid;
    gap: 1rem;
}

.menu-side-card {
    padding: 1.15rem 1.2rem;
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(85, 101, 166, .12);
    box-shadow: 0 14px 30px rgba(36, 49, 96, .06);
}

.menu-side-card__label {
    color: #7e88a8;
    font-size: .84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .85rem;
}

.menu-side-card__value {
    color: #1f2a4d;
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 800;
}

.menu-side-card--actions {
    display: grid;
    gap: .85rem;
}

.menu-editor-main {
    display: grid;
    gap: 1.5rem;
}

.menu-editor-hero {
    background:
        radial-gradient(circle at top right, rgba(102, 114, 255, .16), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(245,247,255,.92) 100%);
    border: 1px solid rgba(101, 114, 227, .12);
}

.menu-editor-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.menu-editor-hero__title {
    margin: .95rem 0 .65rem;
    font-size: clamp(1.9rem, 2vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    color: #1d2746;
}

.menu-editor-hero__text,
.menu-editor-hero__subtext {
    max-width: 760px;
    color: #6f7b97;
    font-size: 1.02rem;
}

.menu-editor-hero__subtext {
    margin-top: .45rem;
    font-size: .95rem;
}

.menu-save-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: rgba(90, 106, 255, .1);
    color: #4356cc;
    font-weight: 800;
    white-space: nowrap;
}

.menu-save-indicator.is-saving {
    background: rgba(255, 191, 89, .18);
    color: #9d6400;
}

.menu-save-indicator.is-error {
    background: rgba(230, 107, 107, .14);
    color: #b33f3f;
}

.menu-editor-toolbar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.menu-editor-field {
    display: grid;
    gap: .45rem;
}

.menu-editor-field span {
    font-size: .82rem;
    font-weight: 800;
    color: #7e88a8;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.menu-editor-toolbar-actions {
    display: grid;
    gap: .85rem;
    align-content: end;
}

.menu-import-alert {
    display: grid;
    gap: .35rem;
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 233, 236, .9);
    border: 1px solid rgba(218, 100, 118, .18);
    color: #8a3850;
}

.menu-editor-sheet {
    display: grid;
    gap: 1.35rem;
}

.meal-grid-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(249,250,255,.94) 100%);
    border: 1px solid rgba(91, 107, 205, .1);
}

.meal-grid-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meal-grid-card__title {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    color: #1c2953;
    letter-spacing: -.04em;
}

.meal-grid-card__subtitle {
    margin: .45rem 0 0;
    color: #6f7b97;
    max-width: 620px;
    font-size: 1rem;
}

.meal-grid-card__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.menu-grid-shell {
    padding-top: .25rem;
}

.menu-grid-table {
    --grid-line: rgba(129, 145, 210, .22);
    margin: 0;
    border-collapse: separate;
    border-spacing: 0 0;
}

.menu-grid-table thead th {
    padding: 0 0 .85rem;
    border: 0;
    color: #7b86a6;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.menu-grid-table tbody td,
.menu-grid-table tfoot td {
    padding: .2rem .22rem;
    border: 0;
    vertical-align: middle;
}

.menu-grid-table__cell--remove {
    width: 110px;
}

.menu-grid-input,
.menu-grid-select {
    width: 100%;
    min-height: 52px;
    padding: .8rem .95rem;
    border-radius: 18px;
    border: 1px solid var(--grid-line);
    background: #f7f9ff;
    color: #1c2953;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.menu-grid-input::placeholder {
    color: #b2bbd4;
}

.menu-grid-input[readonly] {
    cursor: default;
}

.menu-grid-input.is-editing,
.menu-grid-select.is-editing,
.menu-editor-page .form-control:focus,
.menu-editor-page .form-select:focus {
    border-color: rgba(95, 113, 255, .55) !important;
    box-shadow: 0 0 0 3px rgba(95, 113, 255, .12) !important;
    background: #ffffff;
}

.menu-grid-select-shell {
    position: relative;
    cursor: pointer;
}

.menu-grid-select-shell::after {
    content: "⌄";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6370a8;
    font-weight: 700;
    pointer-events: none;
}

.menu-grid-select {
    appearance: none;
    padding-right: 2.4rem;
}

.menu-grid-select:disabled {
    opacity: 1;
    color: #1c2953;
    -webkit-text-fill-color: #1c2953;
    cursor: default;
}

.menu-grid-input--numeric {
    text-align: center;
}

.menu-grid-remove {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 236, 239, .92);
    color: #b24a5d;
    font-size: .97rem;
    font-weight: 800;
}

.menu-grid-remove:hover {
    background: rgba(255, 222, 227, .96);
}

.meal-editor-total-row td {
    padding-top: .85rem;
    padding-bottom: .2rem;
    color: #1c2953;
    font-size: 1.12rem;
    font-weight: 900;
    background: transparent;
}

.menu-protocol-card {
    border: 1px solid rgba(91, 107, 205, .1);
}

.modal-file-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(24,32,39,.07);
}
.modal-file-item:last-child { border-bottom: 0; padding-bottom: 0; }
.modal-file-item__body { flex: 1 1 auto; min-width: 0; display: grid; gap: .8rem; }
.modal-file-item__meta { display: grid; gap: .25rem; }
.modal-file-item__title { font-weight: 800; }
.modal-file-item__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
.modal-file-item__action-wide { flex-basis: 100%; justify-content: center; }
.btn-modal-action {
    min-height: 44px;
    padding: .65rem 1rem;
    border-radius: 14px !important;
    font-weight: 700;
}

.btn-modal-action--light {
    border: 1px solid rgba(24,32,39,.14);
    background: #fff;
    color: var(--ff-text);
}

.btn-modal-action--light:hover {
    background: rgba(24,32,39,.04);
    color: var(--ff-text);
}

.btn-modal-action--dark {
    border: 1px solid rgba(24,32,39,.14);
    background: var(--ff-text);
    color: #fff;
}

.btn-modal-action--dark:hover {
    background: #111827;
    color: #fff;
}

.btn-modal-action--warn {
    border: 1px solid rgba(214, 168, 58, .45);
    background: #f8e7a7;
    color: #6b4f00;
}

.btn-modal-action--warn:hover {
    background: #f3dd8e;
    color: #5d4500;
}

.autofix-summary {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.autofix-list-wrap {
    display: grid;
    gap: .65rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(248, 250, 255, .8);
    border: 1px solid rgba(108, 115, 255, .1);
}

.autofix-list-wrap + .autofix-list-wrap,
.autofix-list-wrap + .autofix-grid,
.autofix-grid + .autofix-checkbox {
    margin-top: 1rem;
}

.autofix-list {
    display: grid;
    gap: .55rem;
    padding-left: 1.1rem;
}

.autofix-list li {
    color: var(--ff-text);
}

.autofix-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.autofix-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.autofix-checkbox {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-top: 1rem;
    padding: .95rem 1rem;
    border-radius: 18px;
    background: rgba(248, 250, 255, .8);
    border: 1px solid rgba(108, 115, 255, .1);
    font-weight: 600;
    color: var(--ff-text);
}

.autofix-checkbox input {
    margin-top: .2rem;
}

.latest-file-actions {
    display: grid;
    gap: .5rem;
}

.latest-file-actions__row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.latest-file-actions__row--stacked {
    justify-content: flex-start;
}

.latest-file-actions__autofix {
    min-width: 144px;
}

.file-history-current,
.file-history-section {
    display: grid;
    gap: .9rem;
}

.file-history-section {
    margin-top: 1.25rem;
}

.file-history-current__label,
.file-history-section__title {
    color: #5e6e8f;
    font-size: .86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.file-history-item__summary {
    padding: .8rem .95rem;
    border-radius: 16px;
    border: 1px solid rgba(95, 113, 255, .12);
    background: rgba(95, 113, 255, .05);
    color: #415173;
    line-height: 1.45;
}

.file-history-empty {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px dashed rgba(95, 113, 255, .18);
    background: rgba(246, 248, 255, .9);
    color: #6b7893;
}

.calendar-empty-state {
    display: grid;
    gap: 1rem;
}

.calendar-empty-state__title {
    color: #1f2a4d;
    font-size: 1.55rem;
    font-weight: 800;
}

.calendar-empty-state__alert {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 235, 239, .96);
    border: 1px solid rgba(219, 136, 152, .2);
    color: #c15467;
    font-size: 1rem;
    font-weight: 700;
}

.calendar-empty-state__copy {
    color: #5b6884;
    line-height: 1.5;
}

.calendar-empty-state__grid {
    display: grid;
    gap: .85rem;
}

.calendar-empty-card {
    display: grid;
    gap: .35rem;
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(95, 113, 255, .16);
    border-radius: 18px;
    background: rgba(240, 245, 255, .96);
    color: #33507f;
    text-align: left;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.calendar-empty-card.is-primary {
    background: rgba(220, 236, 255, .96);
}

.calendar-empty-card:hover {
    transform: translateY(-1px);
    border-color: rgba(95, 113, 255, .28);
    box-shadow: 0 14px 26px rgba(65, 84, 140, .08);
}

.calendar-empty-card__title {
    font-weight: 800;
    font-size: 1rem;
}

.calendar-empty-card__text {
    color: #5f7094;
    line-height: 1.45;
}

.upload-analysis-card {
    display: grid;
    gap: .65rem;
    padding: .95rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(24,32,39,.08);
    background: rgba(24,32,39,.025);
}

.upload-analysis-card.is-success {
    border-color: rgba(12,122,91,.18);
    background: rgba(12,122,91,.06);
}

.upload-analysis-card.is-warning {
    border-color: rgba(186,64,64,.16);
    background: rgba(255, 236, 239, .92);
}

.upload-analysis-card.is-error {
    border-color: rgba(186,64,64,.22);
    background: rgba(255, 243, 244, .98);
}

.upload-analysis-card.is-neutral {
    border-color: rgba(95,113,255,.12);
    background: rgba(95,113,255,.05);
}

.upload-analysis-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
}

.upload-analysis-card__title {
    font-weight: 800;
    color: #1f2a4d;
}

.upload-analysis-card__text {
    color: #58677a;
    line-height: 1.5;
}

.upload-analysis-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.upload-analysis-meta__label {
    color: #6f7b97;
    font-size: .84rem;
    font-weight: 700;
}

.upload-analysis-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(24,32,39,.08);
    color: #24324c;
    font-size: .84rem;
    font-weight: 700;
}

.upload-progress-card {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(24,32,39,.08);
    box-shadow: 0 12px 30px rgba(24,32,39,.05);
}

.upload-progress-card__title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.upload-progress-track {
    width: 100%;
    height: .75rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(24,32,39,.08);
    margin: .9rem 0 .65rem;
}

.upload-progress-track__bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #0c7a5b 0%, #18a779 100%);
    transition: width .18s ease;
}

.upload-queue {
    display: grid;
    gap: .85rem;
    margin-top: 1rem;
}

.upload-queue__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    border-radius: 18px;
    background: rgba(24,32,39,.03);
    border: 1px solid rgba(24,32,39,.07);
}

.upload-queue__name {
    font-weight: 700;
    word-break: break-word;
}

.upload-state-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
}

.upload-state-pill.is-processing {
    color: #0c7a5b;
    background: rgba(12,122,91,.1);
}

.upload-state-pill.is-success {
    color: #0c7a5b;
    background: rgba(12,122,91,.12);
}

.upload-state-pill.is-error {
    color: #ba4040;
    background: rgba(186,64,64,.12);
}

.upload-state-pill.is-warning {
    color: #ba4040;
    background: rgba(186,64,64,.12);
}

.modal-card { border: 0; border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: var(--ff-shadow); }
#adminCreateUserModal {
    z-index: 1060;
}

#adminCreateUserModal .modal-dialog {
    pointer-events: auto;
}

#adminCreateUserModal .modal-card {
    background: #fff;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: auto;
}

#adminCreateUserModal .modal-card *,
#adminCreateUserModal .form-control,
#adminCreateUserModal .form-select,
#adminCreateUserModal button {
    pointer-events: auto;
}

#adminCreateUserModal .modal-header,
#adminCreateUserModal .modal-body,
#adminCreateUserModal .modal-footer {
    position: relative;
    z-index: 1;
    background: #fff;
}

.modal-backdrop.show {
    z-index: 1050;
}
.toast-stack { position: fixed; right: 1rem; bottom: 1rem; z-index: 1200; display: grid; gap: .75rem; }
.ff-toast { min-width: 280px; padding: 1rem 1.1rem; border-radius: 18px; box-shadow: 0 14px 38px rgba(24,32,39,.16); background: rgba(255,255,255,.95); border: 1px solid rgba(24,32,39,.06); }
.ff-toast--success { border-color: rgba(12,122,91,.22); }
.ff-toast--error { border-color: rgba(186, 64, 64, .22); }

.form-control, .form-select, textarea { border-radius: 18px !important; border-color: rgba(24,32,39,.1) !important; min-height: 52px; box-shadow: none !important; }
textarea.form-control { min-height: auto; }
.btn {
    min-height: 48px;
    font-weight: 700;
    --bs-btn-border-radius: 18px;
}

.btn-sm {
    min-height: 40px;
    --bs-btn-padding-y: 0.45rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 0.98rem;
}

.btn-lg {
    min-height: 54px;
}
.btn-dark,
.btn-outline-dark,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #5d71ff;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5266f8;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 93, 113, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4d60ef;
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #c3cbff;
    --bs-btn-disabled-border-color: transparent;
    color: var(--bs-btn-color);
    border-color: var(--bs-btn-border-color);
    background-color: var(--bs-btn-bg);
    background-image: linear-gradient(135deg, #5d71ff 0%, #6d69ff 52%, #875cff 100%);
    box-shadow: 0 14px 32px rgba(93, 113, 255, .24);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    color: var(--bs-btn-hover-color) !important;
    border-color: var(--bs-btn-hover-border-color) !important;
    background-color: var(--bs-btn-hover-bg) !important;
    background-image: linear-gradient(135deg, #5266f8 0%, #625fff 52%, #7d52fb 100%) !important;
    box-shadow: 0 18px 36px rgba(93, 113, 255, .28);
    transform: translateY(-1px);
}

.btn-outline-dark {
    --bs-btn-color: #1f2a42;
    --bs-btn-border-color: rgba(24, 32, 39, .12);
    --bs-btn-hover-color: #1b253b;
    --bs-btn-hover-border-color: rgba(93, 113, 255, .18);
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-focus-shadow-rgb: 93, 113, 255;
    --bs-btn-active-color: #1b253b;
    --bs-btn-active-border-color: rgba(93, 113, 255, .18);
    --bs-btn-active-bg: #ffffff;
    color: var(--bs-btn-color);
    border-color: var(--bs-btn-border-color);
    background-color: #fff;
    background-image: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,252,.98));
    box-shadow: 0 10px 24px rgba(61, 76, 113, .06);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    color: var(--bs-btn-hover-color) !important;
    border-color: var(--bs-btn-hover-border-color) !important;
    background-color: var(--bs-btn-hover-bg) !important;
    background-image: linear-gradient(180deg, rgba(255,255,255,1), rgba(241,244,250,1)) !important;
    box-shadow: 0 14px 28px rgba(61, 76, 113, .08);
    transform: translateY(-1px);
}

.btn-light {
    --bs-btn-color: #273352;
    --bs-btn-border-color: rgba(93, 113, 255, .14);
    --bs-btn-hover-color: #24304d;
    --bs-btn-hover-border-color: rgba(93, 113, 255, .18);
    --bs-btn-hover-bg: #eef2ff;
    --bs-btn-focus-shadow-rgb: 93, 113, 255;
    --bs-btn-active-color: #24304d;
    --bs-btn-active-border-color: rgba(93, 113, 255, .18);
    --bs-btn-active-bg: #e8edff;
    color: var(--bs-btn-color);
    border-color: var(--bs-btn-border-color);
    background-color: #f4f6ff;
    background-image: linear-gradient(180deg, #f4f6ff 0%, #eaeeff 100%);
    box-shadow: 0 10px 24px rgba(93, 113, 255, .08);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: var(--bs-btn-hover-color) !important;
    border-color: var(--bs-btn-hover-border-color) !important;
    background-color: var(--bs-btn-hover-bg) !important;
    background-image: linear-gradient(180deg, #eef2ff 0%, #e3e8ff 100%) !important;
    box-shadow: 0 14px 28px rgba(93, 113, 255, .12);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    
    .info-strip { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: stretch; }
    .dashboard-meta-grid,
    .stats-board { grid-template-columns: 1fr 1fr; }
    .editor-toolbar .d-flex { width: 100%; }
    .menu-editor-page {
        grid-template-columns: 1fr;
    }
    .menu-editor-sidebar {
        position: static;
    }
    .menu-editor-toolbar-grid {
        grid-template-columns: 1fr;
    }
    .menu-editor-hero__top,
    .meal-grid-card__head {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .hero-card, .glass-panel, .auth-card { padding: 1.35rem; border-radius: 24px; }
    .stat-grid { grid-template-columns: 1fr; }
    .calendar-grid { gap: .3rem; }
    .calendar-day { border-radius: 12px; font-size: .84rem; padding: .22rem; }
    .calendar-day__summary { top: .18rem; right: .18rem; gap: .08rem; }
    .calendar-day__summary-item { font-size: .47rem; padding: .06rem .22rem; }
    .dashboard-meta-grid,
    .stats-board { grid-template-columns: 1fr; }
    .copy-panel__row { grid-template-columns: 1fr; }
    .autofix-grid { grid-template-columns: 1fr; }
    .foodblock-pill,
    .modal-file-item,
    .upload-queue__item { align-items: stretch; flex-direction: column; }
    .editor-toolbar .form-select { min-width: 100%; }
    .meal-grid-card__title {
        font-size: 1.55rem;
    }
    .menu-grid-table {
        min-width: 920px;
    }
}
.admin-form-card .form-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #4b5563;
}

.admin-scope-panel {
    display: grid;
    gap: 1rem;
}

.admin-scope-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-scope-group {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.admin-scope-group__title {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--ff-text);
}

.admin-scope-current {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(248, 250, 255, 0.84);
    border: 1px solid rgba(108, 115, 255, 0.1);
}

.admin-scope-current__label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ff-muted);
}

.admin-scope-current__value {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ff-text);
}

.admin-scope-checklist {
    display: grid;
    gap: 0.55rem;
    max-height: 280px;
    padding: 0.9rem;
    overflow: auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-scope-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: rgba(248, 250, 255, 0.86);
    border: 1px solid rgba(108, 115, 255, 0.08);
}

.admin-scope-check input {
    margin-top: 0.15rem;
}

.admin-scope-check strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.35;
}

.admin-scope-check small {
    display: block;
    margin-top: 0.2rem;
    color: var(--ff-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.admin-scope-empty {
    color: var(--ff-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.admin-switch {
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-inline-form {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-inline-grid {
    display: grid;
    gap: 0.65rem;
}

.admin-inline-grid--limit {
    grid-template-columns: 1.2fr 1.2fr 0.9fr 0.9fr 1fr 0.8fr 0.7fr 0.7fr 0.5fr 0.8fr;
}

.admin-tabs-shell {
    padding: 1.4rem 1.5rem 1.55rem;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.admin-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.78);
    color: var(--ff-text);
    font-weight: 700;
    box-shadow: none;
}

.admin-tabs .nav-link.active,
.admin-tabs .nav-link:hover {
    border-color: rgba(108, 115, 255, 0.2);
    background: rgba(108, 115, 255, 0.12);
    color: #4338ca;
}

.admin-tabs__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.07);
    color: inherit;
    font-size: 0.78rem;
    line-height: 1.2;
}

.admin-tabs-content {
    padding-top: 0.25rem;
}

.admin-tab-pane-stack {
    display: grid;
    gap: 1rem;
}

.admin-tab-note {
    margin-bottom: 0;
}

.admin-record-card,
.admin-log-card {
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.admin-record-card {
    overflow: hidden;
}

.admin-record-card__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    cursor: pointer;
    list-style: none;
}

.admin-record-card__summary::-webkit-details-marker {
    display: none;
}

.admin-record-card__summary-copy {
    min-width: 0;
}

.admin-record-card__summary-copy .small {
    margin-top: 0.2rem;
    word-break: break-word;
}

.admin-record-card[open] .admin-record-card__summary {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(108, 115, 255, 0.05);
}

.admin-record-card__body,
.admin-log-card {
    padding: 1.15rem;
}

.admin-codearea {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 0.88rem;
}

.admin-sort-link {
    color: inherit;
    text-decoration: none;
}

.admin-sort-link:hover {
    color: var(--ff-accent);
}

.admin-user-link {
    color: var(--ff-text);
    text-decoration: none;
}

.admin-user-link:hover {
    color: var(--ff-accent);
}

.role-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.74rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1;
    border: 1px solid transparent;
}

.role-pill--user {
    background: rgba(24, 32, 39, 0.06);
    color: var(--ff-text);
}

.role-pill--editor {
    background: rgba(99, 102, 241, 0.12);
    color: #4338ca;
}

.role-pill--operator {
    background: rgba(12, 122, 91, 0.12);
    color: #0c7a5b;
}

.role-pill--coordinator {
    background: rgba(245, 158, 11, 0.14);
    color: #a16207;
}

.role-pill--parent {
    background: rgba(244, 114, 182, 0.14);
    color: #be185d;
}

.role-pill--integrator {
    background: rgba(14, 165, 233, 0.14);
    color: #0369a1;
}

.role-pill--admin {
    background: rgba(17, 24, 39, 0.1);
    color: #111827;
}

.role-pill--superadmin {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(236, 72, 153, 0.18));
    color: #6d28d9;
}

.admin-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ff-text);
    text-decoration: none;
    font-weight: 700;
}

.admin-pagination__link:hover,
.admin-pagination__link.is-active {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.24);
    color: #4338ca;
}

.admin-user-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
}

.admin-user-card {
    padding: 1.35rem;
}

.admin-user-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-user-meta__item {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn[data-file-history-button] {
    background: #efe4bf;
    border-color: #d9bf73;
    color: #6d5317;
}

.btn[data-file-history-button]:hover,
.btn[data-file-history-button]:focus {
    background: #e6d39b;
    border-color: #caa34b;
    color: #5a430f;
}

.btn[data-file-history-button]:focus {
    box-shadow: 0 0 0 .2rem rgba(202, 163, 75, 0.18);
}

.admin-user-meta__item span {
    display: block;
    color: var(--ff-muted);
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
}

.admin-user-meta__item strong {
    display: block;
    word-break: break-word;
}

.admin-activity-list {
    display: grid;
    gap: 0.9rem;
}

.admin-activity-item {
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-activity-item__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

.admin-activity-item__head span {
    color: var(--ff-muted);
    white-space: nowrap;
}

.admin-activity-item__details {
    margin: 0.65rem 0 0;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--ff-text);
    font-size: 0.8rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.validation-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.6rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.validation-pill.is-error {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
}

.validation-pill.is-warning {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.validation-pill.is-success {
    background: rgba(12, 122, 91, 0.12);
    color: #0c7a5b;
}

.file-validation-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.protocol-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.protocol-license-note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 243, 205, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.18);
    color: #9a5b07;
    font-weight: 700;
    line-height: 1.5;
}

.protocol-results {
    position: relative;
    transition: filter .2s ease;
}

.protocol-results.is-locked {
    filter: blur(9px);
    user-select: none;
    pointer-events: none;
}

.protocol-badge {
    min-width: 8rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.protocol-badge span {
    display: block;
    font-size: 0.78rem;
    color: #6b7280;
}

.protocol-badge strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.05rem;
}

.protocol-badge--error {
    background: rgba(220, 38, 38, 0.08);
}

.protocol-badge--warning {
    background: rgba(245, 158, 11, 0.12);
}

.protocol-badge--neutral {
    background: rgba(37, 99, 235, 0.08);
}

.protocol-list {
    display: grid;
    gap: 0.9rem;
}

.protocol-issue {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.74);
}

.protocol-issue__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

.protocol-issue--error {
    border-color: rgba(220, 38, 38, 0.18);
    background: rgba(254, 242, 242, 0.9);
}

.protocol-issue--warning {
    border-color: rgba(245, 158, 11, 0.18);
    background: rgba(255, 251, 235, 0.92);
}

.protocol-issue--info {
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(239, 246, 255, 0.9);
}

.protocol-issue--locked {
    position: relative;
}

.protocol-mask-stack {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.protocol-mask-line {
    display: block;
    width: min(100%, var(--mask-width, 16ch));
    height: 0.9rem;
    border-radius: 999px;
    background-color: rgba(59, 130, 246, 0.08);
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.78) 1.2px, transparent 1.35px);
    background-size: 8px 8px;
    background-position: 0 0;
}

@media (max-width: 1199.98px) {
    .admin-inline-grid--limit {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-record-card__summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-scope-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .profile-oauth-action .btn {
        width: 100%;
        min-width: 0;
    }

    .protocol-summary {
        flex-direction: column;
    }

    .admin-inline-grid--limit {
        grid-template-columns: 1fr;
    }

    .admin-tabs-shell {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .admin-tabs .nav-link {
        width: 100%;
        justify-content: space-between;
    }
}

/* FoodFile 2026 visual refresh */
:root {
    --ff-bg: #f4f6fb;
    --ff-paper: rgba(255, 255, 255, 0.84);
    --ff-paper-strong: rgba(255, 255, 255, 0.96);
    --ff-line: rgba(43, 55, 72, 0.1);
    --ff-text: #1c2540;
    --ff-muted: #66728b;
    --ff-accent: #6c73ff;
    --ff-accent-strong: #4f56f5;
    --ff-accent-soft: rgba(108, 115, 255, 0.12);
    --ff-shadow: 0 28px 70px rgba(61, 76, 113, 0.13);
    --ff-radius: 30px;
    --ff-font: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
    --ff-display: "Onest", "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
}

body.app-shell {
    background:
        radial-gradient(circle at top left, rgba(255, 231, 171, 0.88) 0, transparent 22%),
        radial-gradient(circle at top right, rgba(206, 212, 255, 0.72) 0, transparent 18%),
        linear-gradient(180deg, #f7f8fc 0%, #edf1f7 100%);
}

.site-grid {
    background-image: linear-gradient(rgba(108, 115, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 115, 255, 0.05) 1px, transparent 1px);
}

.site-orb {
    filter: blur(32px);
}

.orb-a {
    left: -80px;
    top: -100px;
    width: 280px;
    height: 280px;
    background: rgba(255, 230, 166, 0.8);
}

.orb-b {
    right: 6%;
    top: 140px;
    width: 220px;
    height: 220px;
    background: rgba(205, 200, 255, 0.72);
}

.topbar {
    background: rgba(255, 255, 255, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.navbar {
    min-height: 72px;
}

.brandmark {
    gap: 0.8rem;
    margin-right: 0;
}

.brandmark__glyph {
    display: inline-grid;
    gap: 0.15rem;
}

.brandmark__image {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    object-fit: contain;
}

.brandmark__glyph span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ff-accent), #8bd0b7);
}

.brandmark__glyph span:nth-child(1) {
    width: 17px;
}

.brandmark__glyph span:nth-child(2) {
    width: 28px;
}

.brandmark__glyph span:nth-child(3) {
    width: 12px;
}

.brandmark__copy {
    display: grid;
    line-height: 1.05;
}

.brandmark__title {
    font-family: var(--ff-display);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brandmark__meta {
    font-size: 0.72rem;
    color: var(--ff-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.topbar__lead {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
}

.topbar__desktop-socials .social-link {
    min-height: 38px;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(61, 76, 113, 0.08);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 42px;
    min-height: 42px;
    padding: 0.6rem 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(24, 32, 39, 0.08);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ff-text);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(61, 76, 113, 0.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    color: var(--ff-accent-strong);
    border-color: rgba(95, 113, 255, 0.24);
    box-shadow: 0 14px 28px rgba(61, 76, 113, 0.12);
}

.social-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.social-link__label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.social-link--icon {
    padding-inline: 0.7rem;
}

.nav-link {
    border-radius: 999px;
    padding: 0.6rem 0.95rem !important;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.7);
}

.hero-band,
.glass-panel,
.hero-card,
.auth-card,
.modal-card {
    border-radius: var(--ff-radius);
    box-shadow: var(--ff-shadow);
}

.hero-band {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    background: linear-gradient(120deg, rgba(255, 230, 166, 0.94) 0%, rgba(205, 200, 255, 0.9) 48%, rgba(255, 219, 244, 0.94) 100%);
}

.hero-band__inner {
    position: relative;
    z-index: 1;
    padding: 3.4rem 3.2rem;
}

.hero-band__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.hero-band__shape--a {
    width: 280px;
    height: 280px;
    right: -70px;
    top: -90px;
}

.hero-band__shape--b {
    width: 180px;
    height: 180px;
    right: 16%;
    bottom: -70px;
}

.display-food {
    font-family: var(--ff-display);
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.section-title {
    font-family: var(--ff-display);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lede {
    color: #4c5871;
    font-size: 1.05rem;
    max-width: 42rem;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.hero-actions {
    margin-bottom: 1.3rem;
}

.hero-facts {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.auth-kpis {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-kpis--login .auth-kpi strong {
    position: relative;
    display: block;
    min-height: 4.6em;
    color: transparent;
}

.auth-kpis--login .auth-kpi strong::after {
    position: absolute;
    inset: 0;
    color: var(--ff-text);
    line-height: 1.35;
    white-space: normal;
}

.auth-kpis--login .auth-kpi:nth-child(1) strong::after {
    content: "Быстрый вход через аккаунт VK";
}

.auth-kpis--login .auth-kpi:nth-child(2) strong::after {
    content: "Вход по email или логину для всех ролей";
}

.auth-kpis--login .auth-kpi:nth-child(3) strong::after {
    content: "Быстрый вход через аккаунт Яндекса";
}

.auth-kpis--steps .auth-kpi {
    min-height: 100%;
    padding: 0.95rem 1rem;
}

.auth-kpis--steps .auth-kpi span {
    font-size: 0.74rem;
}

.auth-kpis--steps .auth-kpi strong {
    font-size: 0.95rem;
    line-height: 1.38;
    overflow-wrap: anywhere;
}

.auth-kpis--steps .auth-kpi.is-current {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(108, 115, 255, 0.28);
    box-shadow: 0 22px 42px rgba(73, 84, 136, 0.12);
}

.auth-kpis--steps .auth-kpi.is-complete {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(99, 176, 135, 0.26);
}

.auth-kpis--steps .auth-kpi.is-locked {
    opacity: 0.82;
}

.hero-facts__item,
.auth-kpi,
.tone-panel,
.soft-stat,
.notice-panel {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 38px rgba(61, 76, 113, 0.08);
}

.hero-facts__item span,
.auth-kpi span {
    display: block;
    color: var(--ff-muted);
    font-size: 0.79rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-facts__item strong,
.auth-kpi strong {
    display: block;
    font-size: 1rem;
}

.hero-illustration {
    width: min(100%, 390px);
    aspect-ratio: 1 / 1;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.76));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 54px rgba(61, 76, 113, 0.16);
    padding: 1.55rem;
    transform: rotate(-5deg);
    margin-left: auto;
}

.hero-illustration__sheet {
    height: 100%;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0.9rem;
}

.hero-illustration__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-illustration__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(108, 115, 255, 0.12);
    color: var(--ff-accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-illustration__tabs {
    display: flex;
    gap: 0.45rem;
}

.hero-illustration__tabs span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(108, 115, 255, 0.18);
}

.hero-illustration__rows {
    display: grid;
    gap: 0.55rem;
}

.hero-illustration__row {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr 0.55fr;
    gap: 0.55rem;
}

.hero-illustration__row span {
    display: block;
    height: 0.78rem;
    border-radius: 999px;
    background: rgba(76, 88, 118, 0.12);
}

.hero-illustration__row span:last-child {
    background: rgba(108, 115, 255, 0.26);
}

.hero-illustration__footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    align-items: end;
}

.hero-illustration__tile {
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(244, 246, 255, 0.9);
}

.hero-illustration__tile strong {
    display: block;
    font-size: 0.88rem;
}

.hero-illustration__tile small {
    display: block;
    margin-top: 0.3rem;
    color: var(--ff-muted);
}

.auth-layout {
    display: grid;
    gap: 1.5rem;
}

.auth-hero {
    padding: 2.2rem;
    border-radius: var(--ff-radius);
    background: linear-gradient(120deg, rgba(255, 230, 166, 0.92), rgba(205, 200, 255, 0.9), rgba(255, 219, 244, 0.94));
    box-shadow: var(--ff-shadow);
}

.auth-hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.85rem;
}

.auth-card__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.auth-card__hint {
    color: var(--ff-muted);
    font-size: 0.92rem;
}

.required-field {
    padding: 0.9rem 1rem 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(108, 115, 255, 0.09), rgba(108, 115, 255, 0.04));
    border: 1px solid rgba(108, 115, 255, 0.1);
}

.required-field .form-label {
    font-weight: 800;
}

.required-field--checkbox {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.auth-card__links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.auth-helper-link {
    color: var(--ff-accent);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.auth-helper-link:hover {
    color: #3746e8;
}

.auth-reminder-modal {
    overflow: hidden;
}

.auth-reminder-modal__hero {
    padding: 2rem 2rem 1.3rem;
    background: linear-gradient(135deg, rgba(255, 238, 194, 0.96), rgba(214, 218, 255, 0.94), rgba(252, 219, 243, 0.96));
}

.auth-reminder-modal__hero h3 {
    margin: 1rem 0 .65rem;
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.auth-reminder-modal__hero p {
    margin: 0;
    max-width: 44rem;
    color: #4e5b78;
    font-size: 1rem;
    line-height: 1.7;
}

.auth-reminder-modal__body {
    display: grid;
    gap: 1rem;
    padding: 1.5rem 2rem 0;
}

.auth-reminder-modal__facts {
    display: grid;
    gap: .9rem;
}

.auth-reminder-modal__fact {
    display: grid;
    gap: .28rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(24, 32, 39, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
}

.auth-reminder-modal__fact span {
    color: var(--ff-muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.auth-reminder-modal__fact strong {
    font-size: 1rem;
    line-height: 1.6;
}

.auth-reminder-modal__note {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(95, 113, 255, .18);
    border-radius: 18px;
    background: rgba(95, 113, 255, .06);
    color: #475473;
    line-height: 1.7;
}

.auth-divider {
    position: relative;
    text-align: center;
    color: var(--ff-muted);
    font-size: 0.8rem;
    margin: 1.2rem 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    border-top: 1px solid var(--ff-line);
    z-index: 0;
}

.auth-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 0.85rem;
    background: rgba(255, 255, 255, 0.88);
}

.oauth-card {
    display: grid;
    gap: 0.8rem;
}

.oauth-provider-form {
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.oauth-provider-form .oauth-button {
    width: 100%;
}

.profile-summary-card,
.profile-page__side,
.profile-oauth-box {
    overflow: hidden;
}

.profile-page__side {
    align-content: start;
}

.profile-oauth-box {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.profile-oauth-box__hint {
    color: var(--ff-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.profile-oauth-widget {
    overflow: hidden;
    border-radius: 18px;
}

.profile-oauth-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.profile-oauth-action .btn {
    min-width: 220px;
}

.profile-oauth-hidden-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
    pointer-events: none;
}

.profile-oauth-box.is-busy {
    opacity: 0.82;
    pointer-events: none;
}

.vk-auth-slot {
    position: relative;
    min-height: 0;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.yandex-auth-slot {
    position: relative;
    min-height: 0;
    border-radius: 18px;
    overflow: hidden;
}

.yandex-auth-slot > [id$="Button"] {
    width: 100%;
}

.yandex-auth-slot > [id$="Button"] > * {
    width: 100% !important;
    max-width: 100%;
}

.yandex-auth-slot iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    border-radius: 18px;
}

.yandex-auth-slot.is-busy {
    opacity: 0.82;
    pointer-events: none;
}

.vk-auth-slot.is-disabled {
    opacity: 0.72;
}

.vk-auth-slot.is-locked .vk-auth-slot__widget {
    pointer-events: none;
    filter: saturate(0.85) blur(0.2px);
}

.vk-auth-slot.is-busy {
    opacity: 0.82;
    pointer-events: none;
}

.vk-auth-slot__placeholder,
.vk-auth-slot__widget {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
}

.vk-auth-slot__widget > * {
    width: 100%;
}

.oauth-card--register .vk-auth-slot:not(.is-disabled) > :not(script):not(.vk-auth-slot__guard):not(.vk-auth-slot__feedback),
.oauth-card--register .yandex-auth-slot > :not(script):not(.vk-auth-slot__guard):not(.vk-auth-slot__feedback) {
    background: transparent !important;
    box-shadow: none !important;
}

.vk-auth-slot__placeholder {
    padding: 0 1rem;
    gap: 0.9rem;
    justify-content: flex-start;
    color: #fff;
}

.vk-auth-slot__copy {
    display: grid;
    gap: 0.15rem;
}

.vk-auth-slot__copy strong {
    font-size: 1rem;
    font-weight: 800;
}

.vk-auth-slot__copy small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
}

.vk-auth-slot__feedback {
    margin-top: 0.75rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 241, 243, 0.96);
    color: #a43b50;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.vk-auth-slot__guard {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: rgba(19, 27, 52, 0.42);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    backdrop-filter: blur(5px);
}

.oauth-card--register {
    grid-template-columns: 1fr;
}

.oauth-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    color: #fff;
}

.oauth-button--centered {
    justify-content: center;
}

.oauth-button small {
    color: rgba(255, 255, 255, 0.8);
}

.oauth-button:disabled,
.oauth-button[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
    border: 0;
}

.oauth-button--vk {
    background: linear-gradient(90deg, #1677ff, #2688ff);
}

.oauth-button--ya {
    background: linear-gradient(90deg, #101010, #252525);
}

.oauth-button--manual {
    background: linear-gradient(90deg, rgba(28, 37, 64, 0.92), rgba(70, 82, 116, 0.92));
}

.oauth-button__mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.88rem;
}

.oauth-button__mark--manual {
    font-size: 1rem;
    letter-spacing: -0.08em;
}

.oauth-note {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(108, 115, 255, 0.08);
    color: #4c5871;
    font-size: 0.9rem;
}

.register-step {
    position: relative;
    padding: 1.55rem 1.65rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--ff-line);
}

.register-step--locked {
    background: rgba(248, 250, 255, 0.82);
}

.register-step--locked > :not(.register-step__guard) {
    opacity: 0.58;
    pointer-events: none;
    user-select: none;
}

.register-step__guard {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(245, 248, 255, 0.9));
    color: #34415c;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    padding: 1.5rem;
}

.register-step__guard[hidden] {
    display: none !important;
}

.register-step__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ff-accent-strong);
    margin-bottom: 0.45rem;
}

.register-step__lead {
    color: var(--ff-muted);
    line-height: 1.65;
}

.register-note {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(108, 115, 255, 0.08);
    border: 1px solid rgba(108, 115, 255, 0.14);
    color: #46526c;
    font-size: 0.94rem;
    line-height: 1.65;
}

.register-note[hidden] {
    display: none !important;
}

.register-note__link {
    display: inline-flex;
    margin-left: 0.45rem;
    color: var(--ff-accent-strong);
    font-weight: 800;
    text-decoration: none;
}

.agreement-check {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: #45516b;
    font-size: 0.96rem;
    line-height: 1.6;
}

.agreement-check input {
    margin-top: 0.35rem;
}

.agreement-check a {
    color: var(--ff-accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.password-field {
    position: relative;
}

.password-field__toggle {
    position: absolute;
    top: 50%;
    right: 0.95rem;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--ff-accent-strong);
    padding: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
}

.password-field__icon {
    display: inline-grid;
    place-items: center;
}

.password-field__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.dashboard-hero {
    background: linear-gradient(120deg, rgba(255, 230, 166, 0.92) 0%, rgba(205, 200, 255, 0.9) 48%, rgba(255, 219, 244, 0.94) 100%);
}

.notice-panel--green {
    background: rgba(220, 247, 224, 0.84);
    border: 1px solid rgba(98, 185, 115, 0.22);
}

.notice-panel--yellow {
    background: rgba(255, 244, 213, 0.9);
    border: 1px solid rgba(240, 184, 75, 0.22);
}

.site-footer {
    margin-top: 3rem;
    padding: 2.2rem 0 3rem;
    background: rgba(232, 236, 245, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.76);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.site-footer__title {
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.site-footer__copy {
    color: var(--ff-muted);
    font-size: 0.92rem;
}

.site-footer__links {
    display: grid;
    gap: 0.55rem;
}

.site-footer__links a {
    color: var(--ff-accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--ff-text);
}

.site-footer__socials {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.site-footer__meta {
    text-align: right;
    color: var(--ff-muted);
    font-size: 0.88rem;
}

.site-footer__meta a {
    color: var(--ff-accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
    color: var(--ff-text);
}

.site-footer__meta strong {
    display: block;
    color: var(--ff-text);
    margin-bottom: 0.45rem;
}

.legal-sheet {
    position: relative;
    overflow: hidden;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.legal-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 36px rgba(61, 76, 113, 0.08);
}

.legal-card h2 {
    margin: 0 0 0.95rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.legal-prose {
    display: grid;
    gap: 1rem;
}

.legal-prose h2 {
    margin: 0.35rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.legal-prose p {
    margin: 0;
    color: var(--ff-muted);
    line-height: 1.75;
}

.legal-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--ff-muted);
    display: grid;
    gap: 0.45rem;
}

.legal-details {
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.legal-details div {
    display: grid;
    gap: 0.2rem;
}

.legal-details dt {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ff-muted);
}

.legal-details dd {
    margin: 0;
    color: var(--ff-text);
    line-height: 1.55;
}

.legal-contact-stack {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.legal-contact-stack--inline {
    margin-top: 0;
}

.legal-contact-result {
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    background: rgba(95, 113, 255, 0.08);
    color: var(--ff-text);
    word-break: break-word;
}

.cookie-consent {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1085;
    width: min(31rem, calc(100vw - 2rem));
}

.cookie-consent__card {
    padding: 1.45rem 1.6rem 1.35rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(212, 218, 238, 0.88);
    box-shadow: 0 14px 30px rgba(31, 44, 74, 0.18);
}

.cookie-consent__title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    color: #263238;
}

.cookie-consent__lead {
    margin: 0;
    color: #4a5568;
    font-size: 0.91rem;
    line-height: 1.48;
}

.cookie-consent__link {
    color: #4da3e5;
    font-weight: 600;
    text-decoration: none;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible {
    color: #2e87cd;
    text-decoration: underline;
}

.cookie-consent__settings {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(24, 32, 39, 0.08);
}

.cookie-consent__option {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
    background: rgba(244, 247, 251, 0.9);
    border: 1px solid rgba(219, 226, 238, 0.9);
}

.cookie-consent__option span {
    display: grid;
    gap: 0.18rem;
}

.cookie-consent__option strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.cookie-consent__option small {
    color: #697386;
    font-size: 0.8rem;
    line-height: 1.42;
}

.cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.cookie-consent__button {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0.7rem 0.9rem;
    min-height: 2.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    transform: translateY(-1px);
}

.cookie-consent__button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 163, 229, 0.18);
}

.cookie-consent__button--accept {
    color: #fff;
    background: #3f82be;
    box-shadow: none;
}

.cookie-consent__button--accept:hover,
.cookie-consent__button--accept:focus-visible {
    color: #fff;
    background: #3472ab;
}

.cookie-consent__button--customize {
    color: #fff;
    background: #ef5757;
    border-color: #ef5757;
}

.cookie-consent__button--customize:hover,
.cookie-consent__button--customize:focus-visible {
    color: #fff;
    background: #e34949;
    border-color: #e34949;
}

.cookie-consent__button--necessary {
    color: #fff;
    background: #79808f;
    border-color: #79808f;
}

.cookie-consent__button--necessary:hover,
.cookie-consent__button--necessary:focus-visible {
    color: #fff;
    background: #6c7382;
    border-color: #6c7382;
}

.cookie-consent__button--save {
    color: #fff;
    background: #1f2c4a;
    grid-column: 1 / -1;
}

.cookie-consent__option input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.1rem;
    accent-color: #3f82be;
}

@media (max-width: 1199.98px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .landing-paths--split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .hero-band__inner {
        padding: 2.5rem 2rem;
    }

    .hero-facts,
    .auth-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .oauth-card--register {
        grid-template-columns: 1fr;
    }

    .nav-socials {
        margin-top: 0.55rem;
    }
}

@media (max-width: 767.98px) {
    .hero-band__inner {
        padding: 1.45rem;
    }

    .hero-facts,
    .auth-kpis,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__meta {
        text-align: left;
    }

    .site-footer__socials {
        justify-content: flex-start;
    }

    .cookie-consent {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        width: auto;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .cookie-consent__button {
        width: 100%;
    }
}

/* Home page layout fixes */
.glass-panel {
    padding: clamp(1.4rem, 2vw, 2.15rem);
}

.glass-panel.dashboard-hero,
.glass-panel.hero-band,
.glass-panel.modal-card {
    padding: 0;
}

.landing-panel {
    display: grid;
    gap: 1.45rem;
}

.landing-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.useful-links {
    display: grid;
    gap: 0.95rem;
}

.useful-link-card {
    display: grid;
    gap: 0.45rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(108, 115, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 255, 0.9));
    color: var(--ff-text);
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.useful-link-card:hover,
.useful-link-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(95, 113, 255, 0.2);
    box-shadow: 0 16px 30px rgba(61, 76, 113, 0.09);
}

.useful-link-card__title {
    font-family: var(--ff-display);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.useful-link-card__text {
    color: var(--ff-muted);
    line-height: 1.55;
}

.landing-mini-card {
    display: grid;
    gap: 0.7rem;
    min-height: 176px;
    padding: 1.4rem 1.45rem;
    border-radius: 26px;
    border: 1px solid rgba(108, 115, 255, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-mini-card--primary {
    background: linear-gradient(180deg, rgba(247, 248, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.landing-mini-card--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 255, 0.88));
}

.landing-mini-card__title {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ff-text);
}

.landing-mini-card__text {
    color: var(--ff-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.landing-aside {
    display: grid;
    gap: 1.15rem;
    align-content: start;
}

.landing-aside__title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: var(--ff-text);
}

.landing-aside__text {
    color: var(--ff-muted);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 28rem;
}

.landing-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.landing-feature-list li {
    position: relative;
    padding: 0.95rem 0 0.95rem 1.5rem;
    border-top: 1px solid rgba(108, 115, 255, 0.09);
    color: var(--ff-muted-strong);
    font-size: 1rem;
    line-height: 1.55;
}

.landing-feature-list li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 1.45rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ff-accent-strong), #8ba7ff);
}

.landing-paths {
    display: grid;
    gap: 1rem;
}

.landing-paths--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card {
    padding: 1.35rem 1.45rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 255, 0.92));
    border: 1px solid rgba(108, 115, 255, 0.08);
}

.path-card__title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.path-card code,
.path-card__text code {
    display: inline-block;
    margin-top: 0.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ea5da1;
    font-size: 0.98rem;
    word-break: break-word;
}

.path-card__text {
    color: var(--ff-muted);
    line-height: 1.55;
}

.cta-card {
    display: grid;
    gap: 1.5rem;
    align-content: space-between;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 248, 255, 0.9)),
        radial-gradient(circle at top right, rgba(108, 115, 255, 0.1), transparent 38%);
}

.cta-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.section-intro {
    color: var(--ff-muted);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 42rem;
}

.section-title {
    line-height: 1.04;
}

.pricing-list li {
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .landing-panel__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .landing-mini-card,
    .path-card {
        min-height: 0;
        padding: 1.1rem 1.15rem;
    }

    .cta-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-aside__title {
        font-size: 2rem;
    }
}

/* Dashboard refresh */
.dashboard-hero {
    padding: clamp(1.5rem, 2vw, 2.15rem);
    background:
        radial-gradient(circle at top left, rgba(255, 245, 200, 0.96), transparent 36%),
        linear-gradient(125deg, rgba(255, 231, 171, 0.92) 0%, rgba(214, 210, 255, 0.94) 50%, rgba(255, 225, 244, 0.94) 100%);
}

.dashboard-hero__toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-hero__toolbar-copy {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.dashboard-hero__toggle {
    flex: 0 0 auto;
    min-width: 144px;
}

.dashboard-hero__layout[hidden] {
    display: none !important;
}

.dashboard-hero.is-collapsed {
    padding-bottom: 1.45rem;
}

.dashboard-hero.is-collapsed .dashboard-hero__toolbar {
    margin-bottom: 0;
}

.dashboard-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.35rem;
    align-items: stretch;
}

.dashboard-hero__main {
    display: grid;
    gap: .8rem;
    align-content: start;
    align-self: start;
}

.dashboard-org-profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
}

.dashboard-org-profile__item {
    display: grid;
    gap: .22rem;
    padding: .72rem .88rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(61, 76, 113, 0.05);
    min-width: 0;
}

.dashboard-org-profile__item--wide {
    grid-column: 1 / -1;
}

.dashboard-org-profile__label {
    display: block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ff-muted);
    line-height: 1.35;
}

.dashboard-org-profile__value {
    display: block;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ff-text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dashboard-org-profile__subvalue {
    display: block;
    font-size: .9rem;
    line-height: 1.42;
    color: var(--ff-muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dashboard-org-profile__subvalue-label {
    font-weight: 700;
    color: #54617f;
}

.dashboard-hero__lead {
    max-width: 50rem;
}

.dashboard-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dashboard-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.68rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: #445067;
    font-size: 0.92rem;
    box-shadow: 0 10px 26px rgba(61, 76, 113, 0.08);
}

.dashboard-chip strong {
    color: var(--ff-text);
}

.dashboard-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.dashboard-stat {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 34px rgba(61, 76, 113, 0.08);
}

.dashboard-stat span {
    display: block;
    font-size: 0.78rem;
    color: var(--ff-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.dashboard-stat strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

.dashboard-hero__aside {
    display: flex;
}

.dashboard-context-card {
    width: 100%;
    display: grid;
    gap: 0.8rem;
    align-content: start;
    padding: 1.1rem 1.25rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 38px rgba(61, 76, 113, 0.1);
}

.dashboard-context-card__title {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.dashboard-context-card__path {
    display: inline-flex;
    width: fit-content;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(12, 122, 91, 0.08);
    color: var(--ff-accent);
    font-weight: 800;
    font-size: 0.88rem;
}

.dashboard-context-card__meta {
    display: grid;
    gap: 0.45rem;
    color: var(--ff-muted);
    font-size: 0.95rem;
}

.dashboard-context-card__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: auto;
}

.dashboard-context-card__actions .btn {
    width: 100%;
    white-space: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dashboard-context-card__action-wide {
    grid-column: 1 / -1;
}

.dashboard-context-card__button {
    min-height: 3.85rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    box-shadow: 0 12px 24px rgba(61, 76, 113, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dashboard-context-card__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(61, 76, 113, 0.12);
}

.dashboard-context-card__button--dark {
    color: #fff;
    background: linear-gradient(135deg, #5d71ff 0%, #6d69ff 52%, #875cff 100%);
}

.dashboard-context-card__button--dark:hover {
    color: #fff;
    background: linear-gradient(135deg, #5266f8 0%, #625fff 52%, #7d52fb 100%);
}

.dashboard-context-card__button--soft {
    color: #273352;
    background: linear-gradient(180deg, #f4f6ff 0%, #eaeeff 100%);
    border-color: rgba(93, 113, 255, 0.16);
}

.dashboard-context-card__button--soft:hover {
    color: #24304d;
    background: linear-gradient(180deg, #eef2ff 0%, #e3e8ff 100%);
}

.dashboard-context-card__button--light {
    color: #1f2a42;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,252,0.98));
    border-color: rgba(24, 32, 39, 0.12);
}

.dashboard-context-card__button--light:hover {
    color: #1b253b;
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(241,244,250,1));
}

.dashboard-context-card__button--accent {
    color: #2b3656;
    background: linear-gradient(180deg, #f8f4e8 0%, #f2ead5 100%);
    border-color: rgba(196, 168, 113, 0.28);
}

.dashboard-context-card__button--accent:hover {
    color: #26314f;
    background: linear-gradient(180deg, #f5efe1 0%, #ece1c9 100%);
}

@media (max-width: 1199.98px) {
    .dashboard-context-card__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.dashboard-workspace {
    align-items: flex-start;
}

.dashboard-tools-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 252, 248, 0.9));
}

.dashboard-side-meta {
    display: grid;
    gap: 1rem;
}

.dashboard-surface {
    display: grid;
    gap: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.88));
}

.dashboard-surface__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(24, 32, 39, 0.07);
}

.dashboard-surface__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(12, 122, 91, 0.08);
    color: var(--ff-accent);
    font-weight: 800;
    font-size: 0.86rem;
}

.dashboard-meta-grid {
    gap: 1rem;
    margin-bottom: 0;
}

.meta-card {
    min-height: 100%;
    display: grid;
    gap: 0.55rem;
    align-content: start;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.meta-card--primary,
.meta-card--action {
    grid-column: 1 / -1;
}

.meta-card--primary {
    background: linear-gradient(135deg, rgba(251, 252, 255, 0.98), rgba(245, 248, 255, 0.92));
}

.meta-card--license {
    background: linear-gradient(180deg, rgba(255, 249, 237, 0.96), rgba(255, 255, 255, 0.94));
}

.meta-card--support {
    background: linear-gradient(180deg, rgba(243, 247, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.meta-card--status {
    background: linear-gradient(180deg, rgba(246, 249, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.meta-card--calendar {
    grid-column: 1 / -1;
    padding: 1.2rem !important;
}

.dashboard-calendar-alert {
    grid-column: 1 / -1;
    display: grid;
    gap: .38rem;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(232, 249, 239, 0.96), rgba(245, 255, 248, 0.94));
    border: 1px solid rgba(44, 143, 93, 0.18);
    box-shadow: 0 16px 34px rgba(34, 107, 72, 0.08);
}

.dashboard-calendar-alert__title {
    font-size: 1rem;
    font-weight: 800;
    color: #145a3d;
}

.dashboard-calendar-alert__text {
    font-size: .95rem;
    line-height: 1.5;
    color: #275844;
}

.dashboard-calendar-alert__text strong {
    color: #134d35;
}

.meta-card--calendar .calendar-box {
    padding: 0;
    background: transparent;
    border: 0;
}

.meta-card__value {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.meta-card__subtext strong {
    color: var(--ff-text);
}

.copy-panel__input {
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 0.88rem;
}

.copy-panel__meta {
    align-items: baseline;
}

.dashboard-files-head {
    padding-top: 0.25rem;
    border-top: 1px solid rgba(24, 32, 39, 0.07);
}

.foodblock-pill {
    padding: 1rem 1.05rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 255, 0.86));
}

.foodblock-pill strong {
    display: block;
    margin-bottom: 0.15rem;
}

.dashboard-table-shell {
    padding-top: 0.35rem;
}

.dashboard-table {
    margin-bottom: 0;
}

.dashboard-table thead th {
    padding-top: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
}

.section-head--spaced {
    margin-top: 0.25rem;
}

@media (min-width: 1200px) {
    .dashboard-workspace__aside .dashboard-tools-panel {
        position: sticky;
        top: 104px;
    }
}

@media (max-width: 1199.98px) {
    .dashboard-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .dashboard-hero__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-hero__toggle {
        width: 100%;
    }

    .dashboard-hero__layout {
        grid-template-columns: 1fr;
    }

    .dashboard-org-profile {
        grid-template-columns: 1fr;
    }

    .dashboard-surface__header {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 992px) {
    .nav-socials {
        margin: 0 0 0 0.35rem;
    }
}

@media (max-width: 767.98px) {
    .dashboard-hero {
        padding: 1.2rem;
    }

    .dashboard-hero__stats {
        grid-template-columns: 1fr;
    }

    .dashboard-chip,
    .dashboard-context-card__actions .btn,
    .dashboard-surface__tag {
        width: 100%;
        justify-content: center;
    }

    .dashboard-context-card__actions {
        grid-template-columns: 1fr;
    }
}

/* Dashboard polish */
.glass-panel.dashboard-hero {
    padding: 2.15rem 2.25rem 2rem !important;
}

.glass-panel.dashboard-tools-panel,
.glass-panel.dashboard-surface {
    padding: 1.8rem !important;
}

.section-head__body {
    display: grid;
    gap: 0.5rem;
    min-width: 0;
}

.section-head__body .section-title,
.section-head__body .section-intro,
.dashboard-hero__title,
.dashboard-hero__copy {
    margin: 0 !important;
}

.dashboard-hero__main {
    min-width: 0;
    gap: 0.85rem;
    padding-top: 0;
    align-self: start;
}

.dashboard-hero__title {
    line-height: 1.02;
}

.dashboard-hero__lead {
    max-width: 56rem;
    line-height: 1.45;
    margin-top: 0.1rem;
}

.dashboard-context-card {
    min-height: 100%;
    padding: 1.18rem 1.32rem;
    gap: .85rem;
}

.dashboard-surface {
    padding: 1.7rem;
    gap: 1.55rem;
}

.dashboard-tools-panel {
    padding: 1.7rem;
}

.dashboard-hero {
    padding: 1.95rem 2.05rem 1.8rem;
}

.dashboard-hero .eyebrow {
    margin: 0 !important;
    padding: 0.55rem 1rem;
}

.dashboard-hero__layout {
    gap: 1.55rem;
}

.dashboard-hero__toolbar {
    margin-bottom: 1rem;
}

.dashboard-hero .section-title,
.dashboard-surface .section-title {
    line-height: 1.04;
    margin: 0 !important;
}

.dashboard-hero__chips {
    gap: 0.85rem;
}

.dashboard-chip {
    padding: 0.82rem 1rem;
    line-height: 1.35;
}

.dashboard-hero__stats {
    gap: 1rem;
}

.dashboard-stat {
    padding: 1.1rem 1.15rem 1.05rem;
}

.dashboard-stat span,
.resource-box__title,
.meta-card__label {
    line-height: 1.35;
}

.dashboard-stat span {
    margin-bottom: 0.5rem;
}

.dashboard-context-card__path {
    padding: 0.58rem 0.82rem;
}

.dashboard-context-card__meta {
    line-height: 1.5;
}

.dashboard-context-card__meta span {
    display: block;
}

.meta-card--action {
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(242, 247, 255, 0.98), rgba(255, 255, 255, 0.94));
    border-color: rgba(92, 109, 255, 0.12);
}

.meta-card--action .meta-card__value {
    font-size: 1.05rem;
    color: var(--ff-accent-2);
}

.meta-card {
    padding: 1.45rem !important;
    gap: 0.7rem;
}

.meta-card__value {
    line-height: 1.16;
}

.meta-card__label {
    margin-bottom: 0.6rem !important;
}

.meta-card__subtext {
    margin-top: 0.75rem;
    line-height: 1.55;
}

.copy-panel {
    gap: 0.85rem;
}

.copy-panel__row {
    align-items: stretch;
    gap: 0.9rem;
}

.copy-panel__input {
    min-height: 56px;
    padding: 1rem 1.05rem;
    border-color: rgba(92, 109, 255, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.copy-panel__button {
    min-width: 148px;
}

.copy-panel__meta {
    padding-top: 0.15rem;
}

.dashboard-surface__header {
    gap: 1.2rem;
    padding-bottom: 1rem;
    align-items: flex-start;
}

.dashboard-files-head {
    margin-top: 0.55rem;
    padding-top: 0.95rem;
}

.section-head {
    margin-bottom: 1.2rem;
}

.foodblock-list {
    display: grid;
    gap: 0.85rem;
}

.foodblock-pill {
    border: 1px solid rgba(24, 32, 39, 0.06);
}

.dashboard-table-shell {
    border-top: 1px solid rgba(24, 32, 39, 0.05);
    padding-top: 0.85rem;
}

.notice-panel,
.resource-item,
.calendar-box,
.resource-box {
    line-height: 1.5;
}

.resource-item,
.foodblock-pill,
.calendar-box,
.resource-box {
    padding: 1.15rem !important;
}

@media (max-width: 991.98px) {
    .glass-panel.dashboard-hero {
        padding: 1.55rem !important;
    }

    .glass-panel.dashboard-surface,
    .glass-panel.dashboard-tools-panel {
        padding: 1.35rem !important;
    }
}

@media (max-width: 767.98px) {
    .page-wrap {
        padding: 1rem 0 2.6rem;
    }

    .hero-card,
    .auth-card,
    .glass-panel,
    .modal-card,
    .notice-panel,
    .resource-box,
    .calendar-box,
    .meta-card,
    .foodblock-pill,
    .resource-item,
    .dashboard-context-card,
    .dashboard-stat,
    .soft-stat,
    .tone-panel,
    .hero-facts__item,
    .auth-kpi {
        padding: 1.2rem 1.1rem !important;
    }

    .hero-band__inner {
        padding: 1.5rem 1.2rem;
    }

    .glass-panel.dashboard-hero,
    .glass-panel.dashboard-surface,
    .glass-panel.dashboard-tools-panel {
        padding: 1.2rem !important;
    }

    .dashboard-hero__main,
    .dashboard-hero__stats,
    .dashboard-context-card,
    .dashboard-side-meta,
    .dashboard-surface,
    .copy-panel,
    .foodblock-list,
    .resource-section {
        gap: 0.95rem;
    }

    .dashboard-hero__toolbar {
        gap: 0.85rem;
        margin-bottom: 0.9rem;
    }

    .dashboard-surface__header,
    .section-head,
    .section-head__body,
    .copy-panel__row {
        gap: 0.85rem;
    }

    .section-title,
    .dashboard-hero .section-title,
    .dashboard-surface .section-title {
        line-height: 1.12 !important;
    }

    .section-intro,
    .dashboard-hero__lead,
    .dashboard-context-card__meta,
    .meta-card__subtext,
    .notice-panel,
    .dropzone__text,
    .resource-item,
    .resource-box__link {
        line-height: 1.55;
    }

    .eyebrow,
    .resource-box__title,
    .resource-section__title,
    .meta-card__label {
        line-height: 1.4;
    }

    .dashboard-chip,
    .dashboard-context-card__actions .btn,
    .dashboard-surface__tag,
    .dashboard-hero__toggle {
        width: 100%;
    }

    .dashboard-chip {
        justify-content: flex-start;
        padding: 0.82rem 0.95rem;
    }

    .dashboard-surface__tag {
        justify-content: center;
    }

    .dashboard-stat span,
    .resource-box__title,
    .meta-card__label {
        margin-bottom: 0.45rem;
    }

    .copy-panel__input {
        min-height: 54px;
        padding: 1rem;
    }

    .foodblock-pill__actions,
    .dashboard-context-card__actions,
    .hero-actions,
    .section-actions {
        gap: 0.7rem;
    }

    .modal-card .modal-header,
    .modal-card .modal-body,
    .modal-card .modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .topbar .navbar-collapse {
        margin-top: 0.9rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(255, 255, 255, 0.88);
        box-shadow: 0 18px 42px rgba(61, 76, 113, 0.12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .topbar .navbar-nav {
        width: 100%;
        align-items: stretch !important;
        gap: 0.25rem;
    }

    .topbar .navbar-nav .nav-link {
        display: inline-flex;
        align-items: center;
        width: auto;
        align-self: flex-start;
        padding: 0.72rem 0 !important;
        border-radius: 14px;
        background: transparent;
    }

    .topbar .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.74);
        padding-inline: 0.95rem !important;
    }

    .topbar .navbar-nav .nav-link.active {
        padding-inline: 0.95rem !important;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 22px rgba(61, 76, 113, 0.08);
    }

    .topbar .nav-socials {
        order: 20;
        width: 100%;
        margin: 0.45rem 0 0.35rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(24, 32, 39, 0.06);
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .topbar .social-link {
        min-height: 40px;
        padding: 0.55rem 0.8rem;
        border-radius: 16px;
        box-shadow: none;
    }

    .topbar .navbar-nav > form,
    .topbar .navbar-nav > .btn {
        width: 100%;
        margin-top: 0.35rem;
    }

    .topbar .navbar-nav > form .btn,
    .topbar .navbar-nav > .btn {
        width: 100%;
        justify-content: center;
    }

    .topbar .navbar-toggler {
        padding: 0.4rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 10px 22px rgba(61, 76, 113, 0.08);
    }
}
