@font-face {
    font-family: "LP Open Sans";
    src: url("../../fonts/OpenSans-Regular/open-sans.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "LP Open Sans";
    src: url("../../fonts/OpenSans-SemiBold/open-sans.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "LP Open Sans";
    src: url("../../fonts/OpenSans-ExtraBold/open-sans.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    color-scheme: light;
    --lp-ink: #111315;
    --lp-ink-soft: #50555b;
    --lp-black: #090a0c;
    --lp-black-soft: #15171a;
    --lp-surface: rgba(255, 255, 255, .91);
    --lp-surface-solid: #fff;
    --lp-surface-soft: #f5f6f1;
    --lp-line: rgba(17, 19, 21, .10);
    --lp-line-strong: rgba(17, 19, 21, .18);
    --lp-accent: #d8ff23;
    --lp-accent-strong: #bce800;
    --lp-blue: #245dff;
    --lp-danger: #d83b47;
    --lp-success: #16885b;
    --lp-warning: #b56b00;
    --lp-shadow: 0 24px 70px rgba(20, 24, 30, .10);
    --lp-shadow-soft: 0 12px 35px rgba(20, 24, 30, .07);
    --lp-radius-xl: 28px;
    --lp-radius-lg: 20px;
    --lp-radius-md: 14px;
    --lp-ease: cubic-bezier(.22, 1, .36, 1);
    font-family: "LP Open Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    margin: 0;
    min-height: 100%;
    background: #ecefe8;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.index-cecker {
    position: relative;
    isolation: isolate;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, #eef1ea 0%, #f8f8f4 45%, #ecefe9 100%);
    color: var(--lp-ink);
}

.index-cecker__ambient {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 5%, rgba(216, 255, 35, .25), transparent 25rem),
        radial-gradient(circle at 94% 16%, rgba(36, 93, 255, .12), transparent 28rem),
        linear-gradient(rgba(17, 19, 21, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 21, .026) 1px, transparent 1px);
    background-size: auto, auto, 42px 42px, 42px 42px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

a {
    color: var(--lp-ink);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

.index-cecker__header {
    position: sticky;
    z-index: 50;
    top: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(9, 10, 12, .92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    color: #fff;
    backdrop-filter: blur(22px) saturate(140%);
}

.index-cecker__header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(216, 255, 35, .8), transparent);
    opacity: .45;
}

.index-cecker__header-row,
.index-cecker__actions,
.index-cecker__toolbar,
.index-cecker__pager {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.index-cecker__header-row {
    min-height: 58px;
    justify-content: space-between;
}

.index-cecker__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    text-decoration: none;
}

.index-cecker__brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 13px;
    background: linear-gradient(145deg, var(--lp-accent), #efffa4);
    box-shadow: 0 0 0 5px rgba(216, 255, 35, .07), 0 10px 25px rgba(216, 255, 35, .14);
    color: #090a0c;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.index-cecker__brand-copy {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.index-cecker__brand-copy strong {
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: -.025em;
}

.index-cecker__brand-copy small {
    color: rgba(255, 255, 255, .54);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.index-cecker__nav {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .055);
}

.index-cecker__nav a {
    padding: 9px 12px;
    border-radius: 11px;
    color: rgba(255, 255, 255, .67);
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s var(--lp-ease);
}

.index-cecker__nav a:hover,
.index-cecker__nav a:focus-visible {
    background: rgba(255, 255, 255, .09);
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.index-cecker__nav a[aria-current="page"] {
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
    color: #101214;
}

.index-cecker__nav a.is-logout {
    color: #ff9ca4;
}

.index-cecker__main {
    min-height: calc(100vh - 165px);
    padding: 58px 0 88px;
}

.index-cecker__main h1 {
    max-width: 940px;
    margin: 0 0 30px;
    font-size: clamp(2.35rem, 5vw, 4.75rem) !important;
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.065em;
}

.index-cecker__main h2 {
    margin: 0 0 14px;
    font-size: clamp(1.22rem, 2vw, 1.65rem) !important;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.index-cecker__main h3 {
    letter-spacing: -.025em;
}

.index-cecker__main p {
    text-wrap: pretty;
}

.index-cecker__compact {
    margin: 0 !important;
}

.index-cecker__muted {
    color: var(--lp-ink-soft);
    font-size: .9rem;
}

.index-cecker__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0;
}

.index-cecker__card,
.index-cecker__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow-soft);
    backdrop-filter: blur(18px);
}

.index-cecker__card::before,
.index-cecker__panel::before {
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
}

.index-cecker__card {
    min-height: 255px;
    padding: 26px;
    border-radius: var(--lp-radius-lg);
    transition: transform .28s var(--lp-ease), box-shadow .28s var(--lp-ease), border-color .28s ease;
}

.index-cecker__card:hover {
    z-index: 2;
    border-color: rgba(17, 19, 21, .08);
    box-shadow: var(--lp-shadow);
    transform: translateY(-5px);
}

.index-cecker__card:has(.index-cecker__metric) {
    min-height: 150px;
}

.index-cecker__card h2 {
    margin-top: 25px;
}

.index-cecker__card p {
    min-height: 3.2em;
    color: var(--lp-ink-soft);
}

.index-cecker__card .index-cecker__button {
    margin-top: 8px;
}

.index-cecker__panel {
    margin: 22px 0;
    padding: clamp(22px, 3vw, 34px);
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow);
}

.index-cecker__metric {
    display: block;
    margin-bottom: 5px;
    font-size: clamp(1.9rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.06em;
}

.index-cecker__notice {
    position: relative;
    margin: 0 0 16px;
    padding: 16px 18px 16px 48px;
    border: 1px solid rgba(17, 19, 21, .09);
    border-radius: var(--lp-radius-md);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 30px rgba(20, 24, 30, .06);
    font-weight: 600;
}

.index-cecker__notice::before {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 12px;
    height: 12px;
    border: 3px solid currentColor;
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.index-cecker__notice.is-success {
    background: #ebfaf2;
    color: #0e7049;
}

.index-cecker__notice.is-warning {
    background: #fff6de;
    color: #925800;
}

.index-cecker__notice.is-danger {
    background: #fff0f1;
    color: #a92632;
}

.index-cecker__badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 10px;
    border: 1px solid rgba(17, 19, 21, .08);
    border-radius: 999px;
    background: #eceee9;
    color: #4f5459;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.index-cecker__badge::before {
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 13%, transparent);
}

.index-cecker__badge.is-success {
    background: #e6f8ee;
    color: var(--lp-success);
}

.index-cecker__badge.is-danger {
    background: #ffe9eb;
    color: #b52835;
}

.index-cecker__badge.is-warning {
    background: #fff2d6;
    color: var(--lp-warning);
}

.index-cecker__badge.is-neutral {
    background: #e9edff;
    color: #3d54a0;
}

.index-cecker__badge.is-muted {
    background: #eeefec;
    color: #72767a;
}

.index-cecker__form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 18px;
}

.index-cecker label {
    display: block;
    margin-bottom: 7px;
    color: #2f3337;
    font-size: .79rem;
    font-weight: 800;
    letter-spacing: .015em;
}

.index-cecker input[type="text"],
.index-cecker input[type="password"],
.index-cecker input[type="url"],
.index-cecker input[type="email"],
.index-cecker input[type="number"],
.index-cecker input[type="file"],
.index-cecker select,
.index-cecker textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--lp-line);
    border-radius: 13px;
    outline: 0;
    background: #f7f8f4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    color: var(--lp-ink);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.index-cecker textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.index-cecker input::placeholder,
.index-cecker textarea::placeholder {
    color: #9a9da0;
}

.index-cecker input:focus,
.index-cecker select:focus,
.index-cecker textarea:focus {
    border-color: #9cbe00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(216, 255, 35, .28), 0 12px 28px rgba(20, 24, 30, .08);
    transform: translateY(-1px);
}

.index-cecker input[type="file"] {
    padding: 8px;
}

.index-cecker input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 12px;
    border: 0;
    border-radius: 9px;
    background: #17191c;
    color: #fff;
    cursor: pointer;
}

.index-cecker__choice,
.index-cecker__review-check {
    display: flex !important;
    width: fit-content;
    align-items: center !important;
    gap: 10px;
    margin: 9px 0 !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.index-cecker__choice input,
.index-cecker__review-check input {
    width: 19px;
    height: 19px;
    margin: 0;
    accent-color: #151719;
}

.index-cecker button,
.index-cecker .index-cecker__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid #0c0d0f;
    border-radius: 13px;
    background: linear-gradient(145deg, #1c1f22, #08090a);
    box-shadow: 0 10px 22px rgba(10, 12, 14, .18), inset 0 1px 0 rgba(255, 255, 255, .14);
    color: #fff !important;
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s var(--lp-ease), box-shadow .22s ease, filter .22s ease;
}

.index-cecker button:hover,
.index-cecker .index-cecker__button:hover {
    box-shadow: 0 15px 32px rgba(10, 12, 14, .23);
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.index-cecker button:focus-visible,
.index-cecker .index-cecker__button:focus-visible {
    outline: 3px solid rgba(188, 232, 0, .55);
    outline-offset: 3px;
}

.index-cecker button.secondary,
.index-cecker .index-cecker__button.secondary {
    border-color: var(--lp-line);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 18px rgba(20, 24, 30, .07);
    color: var(--lp-ink) !important;
}

.index-cecker button.danger,
.index-cecker .index-cecker__button.danger {
    border-color: #bb2935;
    background: linear-gradient(145deg, #e44b58, #ad202d);
    color: #fff !important;
}

.index-cecker button:disabled {
    opacity: .46;
    cursor: not-allowed;
    filter: grayscale(.3);
    transform: none;
}

.index-cecker button.is-compact,
.index-cecker .index-cecker__button.is-compact {
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: .74rem;
}

.index-cecker__inline-form {
    display: inline-flex;
}

.index-cecker__toolbar {
    justify-content: space-between;
    margin-bottom: 20px;
}

.index-cecker__actions {
    gap: 12px;
}

.index-cecker__actions > div {
    min-width: min(260px, 100%);
}

.index-cecker__spacer {
    margin-top: 22px;
}

.index-cecker__progress {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6e8e2;
    box-shadow: inset 0 1px 2px rgba(17, 19, 21, .08);
}

.index-cecker__progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #17191c, var(--lp-accent-strong));
    box-shadow: 0 0 20px rgba(188, 232, 0, .35);
    transition: width .35s var(--lp-ease);
}

.index-cecker__definition {
    display: grid;
    grid-template-columns: minmax(150px, 230px) 1fr;
    gap: 13px 22px;
    margin: 0;
}

.index-cecker__definition dt {
    color: #6d7175;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.index-cecker__definition dd {
    margin: 0;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.index-cecker code {
    padding: 3px 7px;
    border-radius: 7px;
    background: #eceee9;
    color: #2b3034;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .85em;
}

.index-cecker pre {
    max-height: 600px;
    overflow: auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: #0d0f11;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    color: #e8ebe7;
    white-space: pre-wrap;
    word-break: break-word;
}

.index-cecker__login {
    max-width: 500px;
    margin: 7vh auto;
}

.index-cecker__login::after {
    position: absolute;
    top: -100px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--lp-accent);
    content: "";
    filter: blur(75px);
    opacity: .23;
    pointer-events: none;
}

.index-cecker__filterbar,
.index-cecker__translation-filter {
    display: grid;
    align-items: end;
    gap: 12px;
    margin-bottom: 22px;
}

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

.index-cecker__filterbar button {
    grid-column: 1 / -1;
    width: 100%;
}

.index-cecker__translation-filter {
    grid-template-columns: minmax(260px, 2fr) repeat(2, minmax(170px, 1fr)) auto;
}

.index-cecker__translation-filter.is-compact {
    grid-template-columns: minmax(260px, 1fr) auto;
}

.index-cecker__pager {
    justify-content: center;
    margin-top: 22px;
}

.index-cecker__selection-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding: 13px 15px;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-md);
    background: rgba(255, 255, 255, .7);
}

.index-cecker__selection-bar label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.index-cecker__url-list,
.index-cecker__record-list {
    overflow: hidden;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    background: rgba(255, 255, 255, .72);
}

.index-cecker__url-item,
.index-cecker__record-item {
    padding: 18px 20px;
    transition: background .2s ease;
}

.index-cecker__url-item:hover,
.index-cecker__record-item:hover {
    background: rgba(255, 255, 255, .9);
}

.index-cecker__url-item + .index-cecker__url-item,
.index-cecker__record-item + .index-cecker__record-item {
    border-top: 1px solid var(--lp-line);
}

.index-cecker__url-row {
    display: grid;
    grid-template-columns: 24px minmax(260px, 1fr) auto;
    align-items: start;
    gap: 12px;
}

.index-cecker__url-select {
    padding-top: 5px;
}

.index-cecker__url-link {
    display: block;
    color: var(--lp-ink) !important;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.index-cecker__url-link:hover {
    text-decoration: underline;
}

.index-cecker__url-badges,
.index-cecker__url-actions,
.index-cecker__record-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.index-cecker__url-badges {
    margin-top: 8px;
}

.index-cecker__url-actions,
.index-cecker__record-actions {
    align-items: flex-start;
    justify-content: flex-end;
}

.index-cecker__url-meta,
.index-cecker__record-grid {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.index-cecker__url-meta {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-left: 36px;
}

.index-cecker__record-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.index-cecker__url-meta > div,
.index-cecker__record-grid > div {
    min-width: 0;
    padding: 9px 11px;
    border: 1px solid rgba(17, 19, 21, .045);
    border-radius: 10px;
    background: var(--lp-surface-soft);
}

.index-cecker__record-grid > div.is-wide {
    grid-column: span 2;
}

.index-cecker__url-meta dt,
.index-cecker__record-grid dt,
.index-cecker__record-label {
    display: block;
    margin: 0 0 3px;
    color: #777b7f;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.index-cecker__url-meta dd,
.index-cecker__record-grid dd {
    margin: 0;
    font-size: .78rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.index-cecker__url-error {
    margin: 10px 0 0 36px;
    color: #ad2834;
    font-size: .79rem;
    font-weight: 600;
}

.index-cecker__url-heading {
    margin-bottom: 20px;
}

.index-cecker__empty {
    padding: 34px;
    color: #72767a;
    text-align: center;
}

.index-cecker__record-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.index-cecker__record-head h3 {
    margin: 0;
    font-size: 1.06rem;
}

.index-cecker__record-head h3 a {
    color: var(--lp-ink) !important;
    text-decoration: none;
}

.index-cecker__record-head h3 a:hover {
    text-decoration: underline;
}

.index-cecker__record-url {
    margin: 5px 0 0;
    color: #707478;
    font-size: .82rem;
    overflow-wrap: anywhere;
}

.index-cecker__record-summary {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    color: #707478;
    font-size: .84rem;
}

.index-cecker__record-summary strong {
    color: var(--lp-ink);
}

.index-cecker__record-edit {
    position: relative;
}

.index-cecker__record-edit summary {
    padding: 8px 11px;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    background: #f0f1ed;
    font-size: .74rem;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.index-cecker__record-edit summary::-webkit-details-marker {
    display: none;
}

.index-cecker__record-edit form {
    position: absolute;
    z-index: 8;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    width: min(400px, 82vw);
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--lp-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--lp-shadow);
}

.index-cecker__record-edit input {
    min-width: 0;
}

.index-cecker__property-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 17px;
}

.index-cecker__property-row + .index-cecker__property-row {
    border-top: 1px solid var(--lp-line);
}

.index-cecker__property-row strong {
    overflow-wrap: anywhere;
}

.index-cecker [data-scan-error]:empty {
    display: none;
}

.index-cecker__translation-progress {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    color: #707478;
    font-size: .82rem;
}

.index-cecker__translation-list {
    display: grid;
    gap: 14px;
    margin: 22px 0;
}

.index-cecker__translation-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--lp-radius-lg);
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--lp-shadow-soft);
}

.index-cecker__translation-source p {
    margin: 6px 0 10px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.index-cecker__translation-savebar {
    position: sticky;
    z-index: 10;
    bottom: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    border-color: rgba(17, 19, 21, .14);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 22px 55px rgba(20, 24, 30, .18);
    backdrop-filter: blur(20px);
}

.index-cecker__csv-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: start;
    gap: 26px;
}

.index-cecker__csv-actions {
    display: grid;
    gap: 14px;
}

.index-cecker__csv-actions form {
    display: grid;
    gap: 9px;
}

.index-cecker__csv-actions .index-cecker__button {
    text-align: center;
}

.index-cecker table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    overflow: hidden;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .76);
}

.index-cecker__table-scroll {
    overflow-x: auto;
}

.index-cecker__tracking-tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 20px;
    padding: 7px;
    overflow-x: auto;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .68);
}

.index-cecker__tracking-tabs a {
    flex: 0 0 auto;
    padding: 10px 15px;
    border-radius: 11px;
    color: var(--lp-ink);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.index-cecker__tracking-tabs a[aria-current="page"] {
    background: #17191c;
    color: #fff;
}

.index-cecker__tracking-filter {
    padding-bottom: 8px;
}

.index-cecker__grid.index-cecker__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.index-cecker th,
.index-cecker td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--lp-line);
    text-align: left;
    vertical-align: top;
}

.index-cecker th {
    background: #f1f2ee;
    color: #606468;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.index-cecker tr:last-child td {
    border-bottom: 0;
}

.index-cecker__footer {
    padding: 24px 0 34px;
    color: rgba(17, 19, 21, .45);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.index-cecker__footer .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 19, 21, .08);
}

@media (max-width: 1100px) {
    .index-cecker__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-cecker__grid.index-cecker__grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-cecker__url-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-cecker__header-row {
        align-items: flex-start;
    }

    .index-cecker__nav {
        max-width: 76%;
        justify-content: flex-end;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 26px, 1240px);
    }

    .index-cecker__header {
        position: relative;
    }

    .index-cecker__header-row {
        align-items: stretch;
        flex-direction: column;
    }

    .index-cecker__nav {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .index-cecker__nav::-webkit-scrollbar {
        display: none;
    }

    .index-cecker__nav a {
        flex: 0 0 auto;
    }

    .index-cecker__main {
        padding-top: 38px;
    }

    .index-cecker__translation-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-cecker__translation-filter button {
        width: 100%;
    }

    .index-cecker__translation-row,
    .index-cecker__csv-grid {
        grid-template-columns: 1fr;
    }

    .index-cecker__translation-progress {
        grid-template-columns: 1fr auto;
    }

    .index-cecker__translation-progress span:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .index-cecker__grid {
        grid-template-columns: 1fr;
    }

    .index-cecker__grid.index-cecker__grid--four {
        grid-template-columns: 1fr;
    }

    .index-cecker__card {
        min-height: 0;
    }

    .index-cecker__definition {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .index-cecker__definition dd {
        margin-bottom: 12px;
    }

    .index-cecker__url-row {
        grid-template-columns: 24px minmax(0, 1fr);
    }

    .index-cecker__url-actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .index-cecker__url-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-left: 36px;
    }

    .index-cecker__record-head {
        align-items: stretch;
        flex-direction: column;
    }

    .index-cecker__record-actions {
        justify-content: flex-start;
    }

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

    .index-cecker__translation-savebar {
        position: static;
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .index-cecker__brand-mark {
        width: 38px;
        height: 38px;
    }

    .index-cecker__main h1 {
        font-size: 2.45rem !important;
    }

    .index-cecker__panel,
    .index-cecker__card {
        padding: 20px;
        border-radius: 19px;
    }

    .index-cecker__filterbar,
    .index-cecker__record-grid,
    .index-cecker__translation-filter,
    .index-cecker__translation-filter.is-compact {
        grid-template-columns: 1fr;
    }

    .index-cecker__filterbar button {
        grid-column: 1;
    }

    .index-cecker__url-meta {
        grid-template-columns: 1fr;
    }

    .index-cecker__url-actions,
    .index-cecker__record-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .index-cecker__url-actions > *,
    .index-cecker__record-actions > * {
        text-align: center;
    }

    .index-cecker__record-grid > div.is-wide {
        grid-column: auto;
    }

    .index-cecker__record-edit form {
        position: static;
        width: 100%;
        margin-top: 7px;
        flex-direction: column;
    }

    .index-cecker__property-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .index-cecker__translation-progress {
        grid-template-columns: 1fr;
    }

    .index-cecker__translation-progress span:last-child {
        grid-column: auto;
    }

    .index-cecker__footer .container {
        flex-direction: column;
        gap: 5px;
    }
}

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