:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f9fbff;
    --ink: #162338;
    --muted: #475d79;
    --line: #d7e2f0;
    --accent: #0f6aa4;
    --accent-2: #0d8f95;
    --shadow: 0 14px 30px rgba(15, 44, 86, 0.08);
    --verified-group-bg: #dcf6e5;
    --verified-group-text: #0c6a32;
    --verified-oa-bg: #fff0bf;
    --verified-oa-text: #714f00;
    --public-bg: #deecff;
    --public-text: #124f9b;
    --private-bg: #ebe2ff;
    --private-text: #55318f;
    --status-active-bg: #ddf5e5;
    --status-active-text: #0d6531;
    --status-unknown-bg: #ffeecf;
    --status-unknown-text: #7f4900;
    --status-dead-bg: #fde1e7;
    --status-dead-text: #851731;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
    line-height: 1.45;
    background: radial-gradient(circle at top left, #f0f8ff 0%, #f4f7fb 35%, #f6f7fb 100%);
    color: var(--ink);
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.why-popover__panel[hidden] {
    display: none !important;
}

.why-popover {
    position: relative;
    display: inline-flex;
}

.why-popover__trigger {
    min-height: 34px;
    border-radius: 999px;
    padding: 0 12px;
    border: 1px solid rgba(63, 78, 103, 0.92);
    background: rgba(14, 18, 27, 0.92);
    color: #eef4ff;
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
}

.why-popover__trigger:hover {
    filter: brightness(1.06);
}

.why-popover__panel {
    position: fixed;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 260;
    width: min(360px, calc(100vw - 28px));
    max-height: min(420px, calc(100vh - 32px));
    overflow-y: auto;
    display: grid;
    gap: 10px;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(12, 17, 27, 0.98);
    border: 1px solid rgba(49, 60, 81, 0.95);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
    text-align: left;
}

.why-popover__title {
    color: #f4f8ff;
    font-size: 0.83rem;
    line-height: 1.35;
}

.why-popover__list {
    margin: 0;
    padding-left: 17px;
    display: grid;
    gap: 7px;
    color: #9eabc0;
    font-size: 0.76rem;
    line-height: 1.55;
}

.why-popover--inline {
    display: inline-flex;
    vertical-align: baseline;
    margin-left: 6px;
}

.why-popover--inline .why-popover__trigger {
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(70, 86, 113, 0.86);
    background: rgba(14, 18, 27, 0.76);
    color: #dfe8ff;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.why-popover--inline .why-popover__trigger:hover {
    color: #f5f8ff;
    filter: brightness(1.04);
}

.container {
    width: calc(100% - 28px);
    max-width: 1160px;
    margin: 0 auto;
}

body.route-public,
body.route-home {
    --public-content-width: min(1760px, max(1240px, 80vw), calc(100% - 32px));
}

html.route-error,
body.route-error {
    background:
        radial-gradient(circle at top center, rgba(67, 96, 171, 0.2) 0%, rgba(67, 96, 171, 0) 32%),
        radial-gradient(circle at 86% 18%, rgba(29, 191, 149, 0.08) 0%, rgba(29, 191, 149, 0) 26%),
        linear-gradient(180deg, #08111d 0%, #091423 22%, #091524 58%, #07111c 100%);
    color: #eef3fb;
}

body.route-error,
body.route-error button,
body.route-error input,
body.route-error textarea,
body.route-error select {
    font-family: "Segoe UI", Tahoma, "Noto Sans", Arial, sans-serif;
}

.route-error .container {
    width: var(--public-content-width);
    max-width: none;
}

.route-error .page-main {
    padding-top: 18px;
    padding-bottom: 86px;
}

.route-error .breadcrumbs {
    color: rgba(224, 233, 247, 0.78);
}

.route-error .breadcrumbs a {
    color: #dbe8ff;
}

.route-error .breadcrumb-sep {
    color: rgba(166, 181, 209, 0.7);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid rgba(39, 46, 61, 0.8);
    backdrop-filter: blur(12px);
    background: rgba(9, 11, 16, 0.82);
}

.header-inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.header-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    max-width: 56px;
}

.logo {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #ffffff;
}

.logo:hover {
    text-decoration: none;
}

.logo__mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: block;
}

.header-locale-switch a:hover {
    text-decoration: none;
}

.desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(18, 26, 38, 0.88) 0%, rgba(11, 18, 30, 0.92) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: visible;
}

.desktop-nav > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 0 14px;
    border: 1px solid transparent;
    color: rgba(233, 248, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.desktop-nav > a:hover {
    text-decoration: none;
    color: #f5f9ff;
    background: rgba(26, 38, 56, 0.86);
    border-color: rgba(168, 191, 227, 0.16);
    transform: translateY(-1px);
}

.desktop-nav > a.is-active {
    color: #081220;
    background: linear-gradient(180deg, #f4f8ff 0%, #d9e7ff 100%);
    border-color: rgba(212, 228, 255, 0.88);
    box-shadow: 0 8px 18px rgba(85, 133, 210, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.header-dropdown {
    position: relative;
}

.header-dropdown summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 0 11px;
    border: 1px solid transparent;
    color: rgba(237, 244, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.header-dropdown summary::-webkit-details-marker {
    display: none;
}

.header-dropdown summary::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 7px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.header-dropdown summary:hover {
    color: #f5f9ff;
    background: rgba(26, 38, 56, 0.86);
    border-color: rgba(168, 191, 227, 0.16);
    transform: translateY(-1px);
}

.header-dropdown summary.is-active,
.header-dropdown[open] summary {
    color: #081220;
    background: linear-gradient(180deg, #f4f8ff 0%, #d9e7ff 100%);
    border-color: rgba(212, 228, 255, 0.88);
    box-shadow: 0 8px 18px rgba(85, 133, 210, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.header-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 30;
    width: min(340px, calc(100vw - 28px));
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 8px 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(53, 63, 82, 0.96);
    background: rgba(11, 16, 24, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.header-dropdown[open] .header-dropdown__menu {
    display: grid;
}

.header-category-link {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eff5ff;
    text-align: center;
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.header-category-link:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(160, 183, 220, 0.16);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}

.header-desktop-shell {
    display: none;
    min-width: 0;
}

.header-mobile-shell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}

.header-mobile-utility {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 0 13px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.header-action:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.header-action--ghost {
    color: #edf4ff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-action--primary {
    color: #0a1320;
    background: linear-gradient(120deg, #eef4ff 0%, #c3dafc 100%);
}

.header-action--ghost.is-active,
.header-action--primary.is-active {
    box-shadow: 0 8px 18px rgba(85, 133, 210, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.header-action--ghost.is-active {
    color: #081220;
    background: linear-gradient(180deg, #f4f8ff 0%, #d9e7ff 100%);
    border-color: rgba(212, 228, 255, 0.88);
}

.header-action--mobile {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.76rem;
}

.header-action--mobile-link {
    white-space: nowrap;
}

.header-action--mobile-icon {
    width: 34px;
    min-width: 34px;
    padding: 0;
}

.header-action--mobile-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.header-locale-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(18, 26, 38, 0.88) 0%, rgba(11, 18, 30, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-locale-switch a {
    min-width: 40px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(237, 244, 255, 0.76);
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.header-locale-switch a:hover {
    color: #f5f9ff;
    background: rgba(26, 38, 56, 0.86);
    transform: translateY(-1px);
}

.header-locale-switch a.is-active {
    color: #08111d;
    background: linear-gradient(180deg, #f4f8ff 0%, #d9e7ff 100%);
    box-shadow: 0 8px 18px rgba(85, 133, 210, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.header-locale-switch--mobile a {
    min-width: 34px;
    min-height: 28px;
    padding: 0 8px;
}

.header-mobile-menu {
    position: relative;
}

.header-mobile-menu summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 999px;
    padding: 0;
    color: #edf4ff;
    background: linear-gradient(180deg, rgba(18, 26, 38, 0.88) 0%, rgba(11, 18, 30, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.header-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.header-mobile-menu summary svg {
    width: 16px;
    height: 16px;
    display: block;
}

.header-mobile-menu[open] summary {
    color: #081220;
    background: linear-gradient(180deg, #f4f8ff 0%, #d9e7ff 100%);
    border-color: rgba(212, 228, 255, 0.88);
    box-shadow: 0 8px 18px rgba(85, 133, 210, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.header-mobile-menu__panel {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 74px);
    right: 14px;
    left: 14px;
    z-index: 40;
    width: auto;
    max-height: calc(100vh - 92px);
    overflow: auto;
    overscroll-behavior: contain;
    display: none;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(46, 55, 72, 0.96);
    background: rgba(9, 13, 20, 0.98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.header-mobile-menu[open] .header-mobile-menu__panel {
    display: grid;
}

.header-mobile-menu__links {
    display: grid;
    gap: 7px;
}

.header-mobile-menu__links a {
    min-height: 36px;
    border-radius: 999px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    color: #edf4ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
}

.header-mobile-menu__links a.is-active {
    color: #081220;
    background: linear-gradient(180deg, #f4f8ff 0%, #d9e7ff 100%);
    border-color: rgba(212, 228, 255, 0.88);
    box-shadow: 0 8px 18px rgba(85, 133, 210, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.header-mobile-menu__section {
    display: grid;
    gap: 9px;
    padding-top: 2px;
}

.header-mobile-menu__section-title {
    color: rgba(168, 188, 220, 0.82);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-mobile-menu__section-title.is-active {
    color: #dbe8ff;
}

.header-mobile-menu__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.header-mobile-menu__category {
    min-height: 36px;
    border-radius: 999px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #edf4ff;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.header-mobile-menu__category:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(160, 183, 220, 0.16);
}

.page-main {
    padding-top: 16px;
    padding-bottom: 52px;
}

.flash-notice {
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #f7cdb8;
    background: #fff2ea;
    color: #8c3f1f;
    padding: 10px 12px;
}

.flash-notice--warn {
    border-color: #d8c08f;
    background: #fff7df;
    color: #725106;
}

.maintenance-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 20px;
    background:
        radial-gradient(circle at top center, rgba(123, 181, 255, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 207, 136, 0.14), transparent 28%),
        linear-gradient(180deg, #08192e 0%, #0b1d34 46%, #081625 100%);
}

.maintenance-card {
    width: min(100%, 780px);
    padding: 36px 32px;
    border-radius: 32px;
    border: 1px solid rgba(144, 179, 220, 0.2);
    background:
        linear-gradient(180deg, rgba(15, 31, 55, 0.94) 0%, rgba(8, 19, 35, 0.96) 100%);
    box-shadow: 0 30px 72px rgba(4, 11, 21, 0.44);
    color: #eef5ff;
}

.maintenance-card__status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.maintenance-card__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.maintenance-card__mark {
    width: 48px;
    height: 48px;
    display: block;
    flex: 0 0 auto;
}

.maintenance-card__eyebrow {
    margin: 0;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #99beef;
}

.maintenance-card__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.maintenance-card__signal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(120, 165, 226, 0.28);
    background: rgba(17, 38, 68, 0.72);
    color: #dcecff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.maintenance-card__signal--soft {
    color: #f8e7c3;
    border-color: rgba(228, 184, 110, 0.26);
    background: rgba(62, 45, 18, 0.48);
}

.maintenance-card h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4.1vw, 3rem);
    line-height: 1.04;
    max-width: 13ch;
}

.maintenance-card > p {
    margin: 0;
    max-width: 58ch;
    font-size: 1.04rem;
    line-height: 1.85;
    color: #d8e7fb;
}

.maintenance-card__grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.maintenance-card__panel {
    display: grid;
    gap: 8px;
    padding: 17px 16px;
    border-radius: 20px;
    border: 1px solid rgba(137, 168, 206, 0.16);
    background: linear-gradient(180deg, rgba(15, 31, 55, 0.88) 0%, rgba(11, 24, 44, 0.84) 100%);
}

.maintenance-card__panel strong {
    display: block;
    width: 100%;
    font-size: 0.96rem;
    color: #f5f9ff;
}

.maintenance-card__panel span {
    font-size: 0.9rem;
    line-height: 1.72;
    color: #b4cbe7;
}

.maintenance-card__meta {
    margin-top: 20px;
    padding-top: 18px;
    display: grid;
    gap: 10px;
    border-top: 1px solid rgba(135, 164, 201, 0.14);
    color: #a5bdd9;
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .maintenance-screen {
        padding: 18px 14px;
    }

    .maintenance-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .maintenance-card h1 {
        max-width: none;
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .maintenance-card__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .maintenance-card__panel {
        padding: 14px 13px;
    }

    .maintenance-card__meta {
        padding-top: 16px;
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.86rem;
    color: var(--muted);
}

.breadcrumb-sep {
    color: #91a4bc;
}

.hero {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(136deg, #ecf8ff 0%, #f6f8ff 52%, #fdf5ea 100%);
    box-shadow: var(--shadow);
    padding: 20px 16px;
}

.hero.compact {
    padding: 16px;
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 3.8vw, 2.2rem);
    line-height: 1.2;
}

.hero p {
    margin: 6px 0;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #dff4ff;
    color: #045075;
    padding: 4px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.search-bar {
    display: flex;
    gap: 8px;
}

.search-bar input,
.filter-field input,
.filter-field select {
    width: 100%;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid #bdcde1;
    background: #fff;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: var(--ink);
}

.search-bar button,
.filter-actions button,
.cta-form button {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #0e6eaa 0%, #0f8f95 100%);
    color: #fff;
    font-weight: 700;
    padding: 0 14px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.search-bar button:hover,
.filter-actions button:hover,
.cta-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 106, 164, 0.25);
}

.quick-shortener-block {
    width: min(100%, 760px);
    margin: 18px auto 0;
}

.quick-shortener,
.home-quick-shortener {
    display: grid;
    gap: 10px;
    width: 100%;
    color: #eef4ff;
}

.quick-shortener--compact {
    border: 1px solid rgba(73, 93, 130, 0.78);
    border-radius: 18px;
    background: rgba(9, 15, 27, 0.76);
    box-shadow: 0 18px 36px rgba(2, 7, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: 10px;
}

.quick-shortener__stage {
    display: flex;
    align-items: center;
    min-width: 0;
}

.quick-shortener__stage-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    color: #ddecff;
    background: rgba(31, 73, 133, 0.36);
    border: 1px solid rgba(88, 133, 196, 0.46);
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.quick-shortener__steps,
.quick-shortener__step {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.quick-shortener__step[hidden] {
    display: none;
}

.quick-shortener__line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
    min-width: 0;
}

.quick-shortener__line--split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.quick-shortener__input-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    min-width: 0;
    border: 1px solid rgba(83, 105, 143, 0.68);
    border-radius: 14px;
    background: rgba(6, 13, 25, 0.7);
    padding: 0 11px;
}

.quick-shortener__input-row--active {
    border-color: rgba(67, 139, 255, 0.86);
    box-shadow: 0 0 0 1px rgba(62, 134, 255, 0.18);
}

.quick-shortener__input-row--locked {
    background: rgba(7, 15, 28, 0.52);
}

.quick-shortener__input-icon,
.quick-shortener__paste-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bfd3f3;
}

.quick-shortener__input-icon svg {
    width: 20px;
    height: 20px;
}

.quick-shortener input,
.home-quick-shortener input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #f8fbff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 0;
}

.quick-shortener input::placeholder,
.home-quick-shortener input::placeholder {
    color: rgba(159, 178, 209, 0.65);
}

.quick-shortener__locked-value {
    min-width: 0;
    overflow: hidden;
    color: rgba(239, 246, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-shortener__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #062115;
    background: #50d681;
    font-size: 0.75rem;
    font-weight: 900;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.quick-shortener__input-row.is-valid .quick-shortener__check,
.quick-shortener__input-row--locked .quick-shortener__check {
    opacity: 1;
    transform: scale(1);
}

.quick-shortener button,
.home-quick-shortener button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    cursor: pointer;
}

.quick-shortener__paste {
    gap: 6px;
    min-height: 32px;
    border: 1px solid rgba(139, 166, 209, 0.22);
    border-radius: 11px;
    color: #e7f0ff;
    background: rgba(15, 27, 47, 0.86);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    padding: 0 8px;
    white-space: nowrap;
}

.quick-shortener__paste:hover {
    border-color: rgba(184, 211, 255, 0.42);
    background: rgba(22, 39, 68, 0.92);
}

.quick-shortener__paste-icon,
.quick-shortener__paste-icon svg {
    width: 15px;
    height: 15px;
}

.quick-shortener__safe-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: rgba(183, 199, 226, 0.78);
    font-size: 0.75rem;
    line-height: 1.45;
}

.quick-shortener__privacy-option {
    cursor: pointer;
}

.quick-shortener__privacy-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.quick-shortener__privacy-box {
    position: relative;
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    border-radius: 5px;
    border: 1px solid rgba(89, 226, 128, 0.88);
    background: #58e280;
}

.quick-shortener__privacy-box::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #062115;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.quick-shortener__privacy-option input:checked + .quick-shortener__privacy-box {
    border-color: rgba(255, 123, 123, 0.9);
    background: #ff6f6f;
}

.quick-shortener__privacy-option input:checked + .quick-shortener__privacy-box::after {
    content: "×";
    color: #2b0909;
    font-size: 0.86rem;
}

.quick-shortener__privacy-option input:focus-visible + .quick-shortener__privacy-box {
    outline: 2px solid rgba(198, 221, 255, 0.72);
    outline-offset: 2px;
}

.quick-shortener__privacy-text {
    min-width: 0;
}

.quick-shortener__safe-note > span:not(.quick-shortener__privacy-box):not(.quick-shortener__privacy-text) {
    color: #58e280;
    font-size: 0.82rem;
    line-height: 1;
}

.quick-shortener__primary {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 0.86rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.quick-shortener__primary {
    gap: 9px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #236cff 0%, #1d83ff 100%);
    box-shadow: 0 12px 26px rgba(24, 104, 255, 0.24);
}

.quick-shortener__primary:hover {
    text-decoration: none;
    background: linear-gradient(135deg, #2f78ff 0%, #2491ff 100%);
}

.quick-shortener__primary:disabled {
    cursor: wait;
    opacity: 0.78;
}

.quick-shortener__preview {
    min-width: 0;
}

.quick-shortener__preview-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    border: 1px solid rgba(52, 188, 105, 0.38);
    border-radius: 13px;
    background: rgba(10, 42, 29, 0.48);
    padding: 7px 8px;
}

.quick-shortener__preview code {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: rgba(232, 244, 255, 0.9);
    font-size: 0.86rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-shortener__preview strong {
    color: #58e280;
}

.quick-shortener__preview-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.quick-shortener__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.quick-shortener__submit {
    width: 100%;
}

.quick-shortener__feedback-list {
    width: min(100%, 680px);
    margin: 10px auto 0;
    display: grid;
    gap: 8px;
}

.quick-shortener__feedback-list[hidden] {
    display: none;
}

.quick-shortener__feedback {
    border-radius: 14px;
    border: 1px solid rgba(139, 166, 209, 0.22);
    background: rgba(7, 15, 29, 0.82);
    color: #dce8fa;
    font-size: 0.78rem;
    line-height: 1.5;
    padding: 10px 11px;
    text-align: left;
}

.quick-shortener__feedback--success {
    border-color: rgba(81, 216, 144, 0.35);
    background: rgba(10, 32, 26, 0.82);
}

.quick-shortener__feedback--error {
    border-color: rgba(255, 129, 129, 0.38);
    background: rgba(47, 15, 22, 0.82);
}

.quick-shortener__feedback strong {
    display: block;
    color: #f5f8ff;
    font-size: 0.82rem;
    line-height: 1.35;
}

.quick-shortener__feedback p {
    margin: 4px 0 0;
}

.quick-shortener__result {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    min-width: 0;
}

.quick-shortener__result-label {
    color: #9db1cf;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.quick-shortener__result code {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: #f3f7ff;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-shortener__copy {
    flex: 0 0 auto;
    min-height: 32px;
    border: 1px solid rgba(139, 166, 209, 0.28);
    border-radius: 10px;
    color: #eef4ff;
    background: rgba(11, 22, 40, 0.86);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 10px;
    cursor: pointer;
}

.quick-shortener__preview-edit {
    color: #d9e8ff;
    background: rgba(14, 27, 48, 0.72);
}

.quick-shortener__copy:hover {
    border-color: rgba(184, 211, 255, 0.45);
}

.quick-shortener-block__note {
    max-width: 680px;
    margin: 8px auto 0;
    color: rgba(153, 168, 191, 0.78);
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: center;
}

.quick-shortener-block__note a {
    color: rgba(219, 231, 255, 0.9);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .quick-shortener-block {
        margin-top: 14px;
    }

    .quick-shortener--compact {
        padding: 9px;
    }

    .quick-shortener__stage-pill {
        min-height: 26px;
        padding: 0 9px;
        font-size: 0.7rem;
    }

    .quick-shortener__line,
    .quick-shortener__line--split {
        grid-template-columns: minmax(0, 1fr);
    }

    .quick-shortener__input-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
        min-height: 44px;
        border-radius: 13px;
        padding: 0 10px;
    }

    .quick-shortener__input-row--with-paste {
        grid-template-columns: auto minmax(0, 1fr) 34px;
        min-height: 52px;
        padding: 0 8px 0 10px;
    }

    .quick-shortener__input-row .quick-shortener__paste {
        grid-column: 3;
        grid-row: 1;
        justify-self: center;
        width: 32px;
        min-width: 32px;
        min-height: 32px;
        border-color: transparent;
        border-radius: 999px;
        background: rgba(31, 53, 87, 0.64);
        padding: 0;
        font-size: 0.7rem;
        transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
    }

    .quick-shortener__input-row .quick-shortener__paste-text {
        display: none;
    }

    .quick-shortener__input-row--with-paste.is-valid .quick-shortener__paste {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.86);
    }

    .quick-shortener__input-row .quick-shortener__check {
        grid-column: 3;
        grid-row: 1;
    }

    .quick-shortener__input-row--with-paste .quick-shortener__check {
        justify-self: center;
    }

    .quick-shortener input,
    .home-quick-shortener input,
    .quick-shortener__locked-value {
        font-size: 0.86rem;
    }

    .quick-shortener__safe-note {
        align-items: flex-start;
        font-size: 0.72rem;
    }

    .quick-shortener__primary {
        width: 100%;
        min-height: 42px;
        border-radius: 13px;
        padding: 0 13px;
        font-size: 0.84rem;
    }

    .quick-shortener__preview-row {
        gap: 5px;
        padding: 6px;
    }

    .quick-shortener__preview code {
        font-size: 0.8rem;
    }

    .quick-shortener__preview-actions {
        gap: 5px;
    }

    .quick-shortener__preview .quick-shortener__copy {
        width: auto;
        min-width: 42px;
        min-height: 32px;
        padding: 0 8px;
        font-size: 0.7rem;
    }

    .quick-shortener__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .quick-shortener__feedback {
        font-size: 0.76rem;
    }

    .quick-shortener__result {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .quick-shortener__result .quick-shortener__copy {
        width: 100%;
        justify-content: center;
    }
}

.chip-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
}

.chip-scroll a {
    flex: 0 1 auto;
    border-radius: 999px;
    border: 1px solid #bed3ea;
    background: #ffffff;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1c4f86;
}

.section-block {
    margin-top: 24px;
}

.home-section {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 14px;
    box-shadow: 0 8px 18px rgba(15, 44, 86, 0.05);
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-head h2 {
    margin: 0;
    font-size: 1.12rem;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.section-head a {
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.section-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    overflow: visible;
    padding-bottom: 0;
}

.section-item-card {
    min-width: 0;
}

.list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

.avatar {
    border-radius: 10px;
    border: 1px solid #d7e3f0;
    object-fit: cover;
    background: #eef4fa;
}

.avatar-28 {
    width: 28px;
    height: 28px;
}

.ui-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.tag-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    border-radius: 999px;
    border: 1px solid #cadcef;
    background: #eff5ff;
    color: #20497c;
    padding: 2px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

.tag-chip:hover {
    text-decoration: none;
    border-color: #b7cde8;
}

.tag-empty {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 2px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px dashed #c2d3e8;
    background: #f2f7ff;
    color: #4f6786;
}

.chip-icon {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
}

.tag-chip span {
    min-width: 0;
}

.metric {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 23px;
    border-radius: 999px;
    border: 1px solid #ccdbed;
    background: #edf4ff;
    color: #2d4f78;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
}

.badge-row,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge,
.status-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
}

.badge-category {
    background: #e5f4ff;
    color: #0f5c92;
}

.badge-public {
    background: var(--public-bg);
    color: var(--public-text);
}

.badge-private {
    background: var(--private-bg);
    color: var(--private-text);
}

.badge-verify-group {
    background: var(--verified-group-bg);
    color: var(--verified-group-text);
}

.badge-verify-oa {
    background: var(--verified-oa-bg);
    color: var(--verified-oa-text);
}

.badge-fresh {
    background: #e6f8ef;
    color: #16643c;
}

.badge-hot {
    background: #fff0e0;
    color: #b45309;
}

.status-chip.status-active {
    background: var(--status-active-bg);
    color: var(--status-active-text);
}

.status-chip.status-unknown {
    background: var(--status-unknown-bg);
    color: var(--status-unknown-text);
}

.status-chip.status-dead {
    background: var(--status-dead-bg);
    color: var(--status-dead-text);
}

@media (max-width: 560px) {
    .tag-chip,
    .tag-empty,
    .metric {
        height: 21px;
        font-size: 0.68rem;
        padding: 0 7px;
    }

    .chip-icon {
        width: 10px;
        height: 10px;
    }

    .badge,
    .status-chip {
        font-size: 0.63rem;
        padding: 2px 7px;
    }
}

.chip-row a {
    border-radius: 999px;
    background: #edf2ff;
    color: #244d95;
    font-size: 0.78rem;
    padding: 4px 9px;
}

.filter-bar {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 6px 12px rgba(15, 44, 86, 0.04);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.filter-field {
    display: grid;
    gap: 6px;
}

.filter-field span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #4a6180;
}

.filter-summary {
    margin-bottom: 10px;
    display: grid;
    gap: 6px;
}

.filter-summary__label {
    margin: 0;
    color: #355274;
    font-size: 0.84rem;
    font-weight: 700;
}

.filter-summary__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-summary__chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    border: 1px solid #c3d4e8;
    background: #f1f7ff;
    color: #2e4f75;
    font-size: 0.76rem;
    font-weight: 700;
}

.filter-summary--warning {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #f0cf7c;
    background: #fff7dd;
}

.filter-summary--warning .filter-summary__label {
    color: #7a5a11;
}

.filter-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
}

.filter-checks label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #354a66;
}

.filter-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-actions a {
    color: #4b5f7d;
    font-size: 0.9rem;
    font-weight: 600;
}


.turnstile-wrap {
    margin-top: 10px;
}

.honeypot-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.empty-state {
    border: 1px dashed #b8cde2;
    border-radius: 14px;
    padding: 14px;
    background: #f8fbff;
    color: var(--muted);
}

.pager {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pager--public {
    flex-direction: column;
    gap: 8px;
}

.pager-window {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9cee5;
    border-radius: 999px;
    background: #fff;
    color: #1e4f84;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 6px 12px;
}

.pager--public .pager-btn {
    text-decoration: none;
}

.pager-btn--nav {
    min-width: 38px;
    min-height: 38px;
    padding: 0;
}

.pager--public .pager-btn--nav {
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    padding: 0;
}

.pager-btn--page {
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    padding: 0 12px;
}

.pager--public .pager-btn.is-active {
    border-color: #2fb7ee;
    background: #2fb7ee;
    color: #fff;
}

.pager-btn__symbol {
    font-size: 1rem;
    line-height: 1;
}

.pager-btn.is-disabled {
    background: #f1f6fb;
    color: #8da2ba;
}

.pager-status {
    font-size: 0.86rem;
    color: #526783;
}

.pager-limit-note {
    max-width: 720px;
    margin: -2px 0 0;
    color: #526783;
    font-size: 0.86rem;
    line-height: 1.45;
    text-align: center;
}

.pager-gap,
.pager-locked-tail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
}

.pager-gap {
    min-width: 40px;
    border: 1px solid #d4e2f1;
    background: #f4f8fd;
    color: #7c90aa;
}

.pager-locked-tail {
    gap: 6px;
    border: 1px dashed #d49b2a;
    background: #fff6d8;
    color: #74500a;
    padding: 0 12px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .pager-window {
        gap: 6px;
    }

    .pager-locked-tail {
        flex: 1 1 132px;
    }
}

.tracking-pixel {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.related-items {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.related-items .section-item-card {
    flex: 0 0 min(82%, 280px);
    scroll-snap-align: start;
}

.site-footer {
    border-top: 1px solid rgba(30, 38, 52, 0.92);
    background:
        radial-gradient(circle at top center, rgba(84, 96, 241, 0.14) 0%, rgba(84, 96, 241, 0) 34%),
        #0b0e14;
}

.footer-shell {
    width: calc(100% - 24px);
    max-width: 1232px;
    margin: 0 auto;
    padding: 28px 0 24px;
    display: grid;
    gap: 14px;
}

.footer-card {
    border-radius: 22px;
    border: 1px solid rgba(37, 45, 61, 0.96);
    background: rgba(14, 18, 26, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    padding: 18px;
}

.footer-card__grid {
    display: grid;
    gap: 18px;
}

.footer-card__section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-card__section--brand {
    justify-content: flex-start;
}

.footer-brand-card__content {
    display: grid;
    gap: 10px;
    width: 100%;
    justify-items: center;
}

.footer-brand-card__identity {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 0;
    width: fit-content;
    justify-self: center;
    margin-inline: auto;
}

.footer-brand-card__mark {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: block;
}

.footer-brand-card__footer {
    display: grid;
    gap: 12px;
    width: 100%;
}

.footer-brand-card__presence {
    display: grid;
    gap: 12px;
    width: 100%;
}

.footer-brand-card__metric {
    margin: 0;
    color: #a9bbd6;
    font-size: 0.82rem;
    line-height: 1.55;
}

.footer-brand-card__metric strong {
    color: #f4f8ff;
    font-weight: 700;
}

.footer-brand-card__presence-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials__link {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eef5ff;
    background: rgba(21, 28, 39, 0.98);
    border: 1px solid rgba(52, 62, 82, 1);
    text-decoration: none;
}

.footer-socials__link:hover {
    text-decoration: none;
    filter: brightness(1.05);
}

.footer-socials__link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-brand-card__qr {
    display: grid;
    justify-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.footer-brand-card__qr canvas {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    border: 1px solid rgba(52, 62, 82, 1);
    background: rgba(15, 19, 28, 0.98);
    padding: 6px;
}

.footer-brand-card__qr small {
    color: #8fa3c0;
    font-size: 0.72rem;
    text-align: center;
}

.footer-brand-card__lead {
    margin: 0;
    max-width: 340px;
    color: #9eaec5;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.footer-brand-card__network {
    margin: 0;
    color: #93a5c2;
    font-size: 0.82rem;
    line-height: 1.55;
}

.footer-brand-card__network a {
    color: #eef5ff;
    font-weight: 700;
}

.footer-brand-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-button--icon {
    gap: 8px;
}

.footer-button__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-button__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-button--ghost {
    color: #e6eefb;
    background: rgba(22, 28, 39, 0.95);
    border: 1px solid rgba(52, 62, 82, 1);
}

.footer-button:hover {
    text-decoration: none;
    filter: brightness(1.03);
}

.footer-card__section h3 {
    margin: 0 0 10px;
    color: #f3f7ff;
    font-size: 0.95rem;
}

.footer-panel__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-panel__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a9bddd;
    font-size: 0.88rem;
}

.footer-panel__links a:hover {
    color: #eef5ff;
    text-decoration: none;
}

.footer-panel__link-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: rgba(219, 232, 255, 0.82);
}

.footer-panel__link-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.footer-panel__text {
    margin: 0 0 12px;
    color: #94a5bf;
    font-size: 0.84rem;
    line-height: 1.55;
}

.footer-report-button {
    display: inline-grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    width: 100%;
    border-radius: 18px;
    padding: 12px;
    color: #eef5ff;
    background: linear-gradient(180deg, rgba(19, 26, 38, 0.98) 0%, rgba(14, 19, 28, 0.98) 100%);
    border: 1px solid rgba(53, 64, 85, 1);
    text-decoration: none;
}

.footer-report-button:hover {
    text-decoration: none;
    filter: brightness(1.04);
}

.footer-report-button__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dbe8ff;
    background: rgba(32, 41, 58, 0.95);
    border: 1px solid rgba(61, 75, 99, 0.92);
}

.footer-report-button__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-report-button strong {
    display: block;
    color: #f4f8ff;
    font-size: 0.9rem;
}

.footer-report-button small {
    display: block;
    margin-top: 2px;
    color: #93a6c3;
    font-size: 0.74rem;
    line-height: 1.4;
}

.footer-disclaimer {
    margin-top: 12px;
    border-top: 1px solid rgba(41, 51, 69, 0.9);
    padding-top: 12px;
}

.footer-disclaimer h3 {
    margin: 0 0 8px;
    color: #eef4ff;
    font-size: 0.92rem;
}

.footer-disclaimer p {
    margin: 0;
    color: #97a8c2;
    font-size: 0.84rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 6px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #7f90aa;
    font-size: 0.78rem;
}

.error-page {
    display: grid;
    gap: 22px;
    margin-bottom: 28px;
}

.error-page__hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(72, 92, 129, 0.92);
    border-radius: 30px;
    color: #eef3fb;
    background:
        radial-gradient(circle at top right, rgba(113, 164, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(11, 20, 34, 0.95) 0%, rgba(8, 16, 28, 0.96) 100%);
    border-color: rgba(125, 154, 197, 0.16);
    box-shadow: 0 22px 56px rgba(4, 10, 19, 0.18);
}

.error-page__hero > * {
    position: relative;
    z-index: 1;
}

.error-page__eyebrow {
    margin: 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 0 13px;
    border: 1px solid rgba(91, 116, 162, 0.82);
    background: rgba(19, 30, 48, 0.86);
    color: #dce7ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.error-page__title {
    margin: 0;
    max-width: 24ch;
    color: #f5f8ff;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.error-page__message {
    margin: 0;
    max-width: 86ch;
    color: rgba(218, 227, 243, 0.84);
    font-size: 0.98rem;
    line-height: 1.7;
}

.error-page__hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -45% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 170, 255, 0.18) 0%, rgba(118, 170, 255, 0) 72%);
    pointer-events: none;
}

.error-page--group .error-page__hero {
    background:
        radial-gradient(circle at top right, rgba(94, 138, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(11, 20, 34, 0.95) 0%, rgba(8, 16, 28, 0.96) 100%);
}

.error-page--oa .error-page__hero {
    background:
        radial-gradient(circle at top right, rgba(197, 160, 92, 0.19), transparent 28%),
        linear-gradient(180deg, rgba(24, 20, 14, 0.96) 0%, rgba(16, 14, 10, 0.97) 100%);
}

.error-page--mini_app .error-page__hero {
    background:
        radial-gradient(circle at top right, rgba(86, 201, 179, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(10, 24, 24, 0.95) 0%, rgba(8, 18, 18, 0.97) 100%);
}

.error-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.error-page__chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0 12px;
    color: #dbe7fb;
    background: rgba(25, 38, 59, 0.86);
    border: 1px solid rgba(86, 110, 147, 0.7);
    font-size: 0.8rem;
    font-weight: 700;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.error-page__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    border-radius: 14px;
    padding: 0 15px;
    border: 1px solid rgba(114, 145, 189, 0.34);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.error-page__action:hover {
    text-decoration: none;
    filter: brightness(1.02);
}

.error-page__action--primary {
    color: #0d2748;
    background: linear-gradient(120deg, #eff5ff 0%, #d8e7ff 100%);
}

.error-page__action--ghost {
    color: #e3edff;
    background: rgba(15, 25, 40, 0.84);
    border-color: rgba(86, 110, 147, 0.58);
}

.error-page--compact .error-page__hero,
.error-page--compact .error-page__section {
    max-width: 960px;
    margin-inline: auto;
}

.error-page--compact .error-page__hero,
.error-page--compact .error-page__section,
.error-page--compact .section-head,
.error-page--compact .error-page__recovery-card {
    justify-items: center;
    text-align: center;
}

.error-page--compact .error-page__eyebrow,
.error-page--compact .error-page__actions,
.error-page--compact .error-page__chips {
    justify-content: center;
}

.error-page--compact .section-head {
    width: 100%;
}

.error-page--compact .section-head > div {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.error-page--compact .error-page__recovery-grid {
    width: min(860px, 100%);
    margin-inline: auto;
}

.error-page__section {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(67, 84, 115, 0.88);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 20, 33, 0.98) 0%, rgba(8, 14, 24, 0.99) 100%);
    box-shadow: 0 20px 42px rgba(4, 10, 20, 0.18);
}

.error-page .section-head {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0;
}

.error-page .section-head h2 {
    color: #f1f6ff;
    font-size: clamp(1.18rem, 1.5vw, 1.42rem);
}

.error-page .section-head p {
    color: rgba(203, 214, 233, 0.78);
    font-size: 0.94rem;
    line-height: 1.65;
}

.error-page .section-head a {
    color: #dce8ff;
}

.error-page .section-items {
    gap: 14px;
}

.route-error .section-items .item-card {
    border-color: rgba(57, 71, 99, 0.94);
    background: linear-gradient(180deg, rgba(18, 24, 39, 0.95) 0%, rgba(12, 17, 28, 0.98) 100%);
    box-shadow: 0 12px 24px rgba(4, 9, 18, 0.22);
}

.route-error .section-items .item-card__title a {
    color: #edf4ff;
}

.route-error .section-items .item-card__kicker {
    color: rgba(171, 194, 230, 0.82);
}

.route-error .section-items .item-card__avatar {
    border-color: rgba(79, 99, 134, 0.82);
    background: rgba(17, 24, 38, 0.94);
}

.route-error .section-items .item-card__group-kicker-row {
    justify-content: flex-start;
    gap: 6px;
}

.route-error .section-items .item-card__group-kicker-badges {
    gap: 4px;
}

.route-error .section-items .item-card__group-meta {
    border-color: rgba(66, 81, 112, 0.92);
    background: linear-gradient(180deg, rgba(18, 25, 40, 0.98) 0%, rgba(12, 18, 31, 0.98) 100%);
}

.route-error .section-items .item-card__group-meta-row + .item-card__group-meta-row {
    border-top-color: rgba(86, 107, 145, 0.58);
}

.route-error .section-items .item-card__group-chip,
.route-error .section-items .item-card__group-signal,
.route-error .section-items .item-card__group-detail-value,
.route-error .section-items .item-card__group-metric-value {
    color: rgba(226, 237, 255, 0.9);
}

.route-error .section-items .item-card__group-chip-icon,
.route-error .section-items .item-card__group-meta-icon {
    color: rgba(146, 174, 223, 0.78);
}

.route-error .section-items .item-card__action-btn {
    border-color: rgba(77, 93, 128, 0.88);
    background: rgba(16, 24, 39, 0.8);
    color: #e8efff;
}

.error-page__recovery-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.error-page__recovery-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(70, 90, 125, 0.84);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17, 25, 40, 0.98) 0%, rgba(11, 17, 28, 0.99) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.error-page__recovery-card h2 {
    margin: 0;
    color: #f4f7ff;
    font-size: 1.16rem;
    line-height: 1.2;
}

.error-page__recovery-card p {
    margin: 0;
    color: rgba(202, 213, 232, 0.8);
    line-height: 1.65;
}

.error-page__recovery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    border-radius: 12px;
    padding: 0 14px;
    color: #0d2748;
    background: linear-gradient(120deg, #eff5ff 0%, #d8e7ff 100%);
    border: 1px solid rgba(114, 145, 189, 0.34);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.error-page__recovery-link:hover {
    text-decoration: none;
    filter: brightness(1.02);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

@media (min-width: 760px) {
    .hero {
        padding: 24px;
    }

    .section-items {
        gap: 12px;
    }

    .filter-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .filter-checks {
        grid-column: span 2;
    }

    .list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-items {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
    }

    .related-items .section-item-card {
        flex: initial;
    }

    .route-detail .related-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-card__grid {
        grid-template-columns: minmax(0, 3.9fr) minmax(320px, 3.6fr) minmax(0, 2.7fr);
        align-items: start;
        gap: 0;
    }

    .footer-card__section {
        min-height: 100%;
        padding: 8px 22px 10px;
    }

    .footer-card__section--brand {
        padding-right: 26px;
    }

    .footer-card__section--pages {
        padding-inline: 22px 18px;
    }

    .footer-card__section--report {
        padding-left: 24px;
        padding-right: 12px;
    }

    .footer-card__section + .footer-card__section {
        border-left: 1px solid rgba(36, 46, 62, 0.9);
    }

    .footer-card__section--brand .footer-brand-card__content,
    .footer-card__section--brand .footer-brand-card__presence,
    .footer-card__section--brand .footer-brand-card__metric,
    .footer-card__section--brand .footer-brand-card__presence-row,
    .footer-card__section--brand .footer-brand-card__footer,
    .footer-card__section--brand .footer-brand-card__lead,
    .footer-card__section--brand .footer-brand-card__network,
    .footer-card__section--brand .footer-brand-card__actions {
        width: 95%;
        max-width: none;
    }

    .footer-card__section--pages .footer-panel__links {
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
        row-gap: 10px;
        align-content: start;
    }

    .footer-card__section--pages .footer-panel__links a {
        white-space: nowrap;
    }

    .footer-card__section--report .footer-panel__text,
    .footer-card__section--report .footer-disclaimer p {
        width: 95%;
        max-width: none;
    }

    .error-page__recovery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 759px) {
    .why-popover {
        width: 100%;
        justify-content: center;
    }

    .why-popover--inline {
        width: auto;
        justify-content: initial;
        margin-left: 4px;
    }

    .why-popover__panel {
        width: min(340px, calc(100vw - 20px));
    }

    .route-detail .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .route-detail .section-head a {
        white-space: normal;
    }

    .footer-card__section--brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand-card__content,
    .footer-brand-card__presence,
    .footer-brand-card__footer {
        justify-items: center;
    }

    .footer-brand-card__actions {
        margin-inline: auto;
    }

    .footer-brand-card__metric {
        text-align: center;
    }

    .footer-brand-card__presence-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-brand-card__actions {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-card__section--pages h3,
    .footer-card__section--report h3,
    .footer-panel__text {
        text-align: center;
    }

    .footer-panel__links {
        justify-items: center;
        text-align: center;
    }

    .footer-card__section--pages .footer-panel__links {
        grid-template-columns: 1fr;
    }

    .footer-report-button {
        width: 100%;
    }

    .footer-disclaimer {
        text-align: left;
    }

    .error-page__hero {
        padding: 18px 16px;
    }

    .error-page__title {
        max-width: none;
        font-size: clamp(1.5rem, 8vw, 2.1rem);
    }

    .error-page__message {
        font-size: 0.92rem;
    }

    .error-page__chips {
        gap: 8px;
    }

    .error-page__chip {
        width: 100%;
        justify-content: flex-start;
    }

    .error-page__actions {
        width: 100%;
    }

    .error-page__action {
        width: 100%;
    }

    .error-page__section {
        padding: 18px 16px;
    }

    .error-page__recovery-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 900px) {
    .header-inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 20px;
        min-height: 76px;
    }

    .header-desktop-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-width: 0;
    }

    .desktop-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .header-mobile-shell {
        display: none;
    }

    .home-shell--reference .home-contribute__card {
        grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1.02fr);
        min-height: 252px;
        gap: 34px;
        padding: 26px 30px;
    }

    .home-shell--reference .home-contribute__card h2 {
        max-width: 12ch;
        font-size: clamp(1.9rem, 2.8vw, 3rem);
    }

    .home-shell--reference .home-contribute__copy > p {
        max-width: none;
        font-size: 0.96rem;
    }

    .section-items {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow: visible;
        gap: 12px;
    }

    .list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


