.pe-weight-page {
    --pew-ink: #10233d;
    --pew-route: #17345a;
    --pew-blue: #2d5a8a;
    --pew-wash: #eaf3fb;
    --pew-paper: #ffffff;
    --pew-orange: #f15c3b;
    --pew-muted: #5e718b;
    --pew-line: #d6e2ee;
    overflow: hidden;
    background: var(--pew-wash);
    color: var(--pew-ink);
}

.pe-weight-page *,
.pe-weight-page *::before,
.pe-weight-page *::after {
    box-sizing: border-box;
}

.pe-weight-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.pe-weight-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 82px;
    border-bottom: 4px solid var(--pew-orange);
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(135deg, var(--pew-ink), #245a82);
    background-size: 34px 34px, 34px 34px, auto;
    color: var(--pew-paper);
}

.pe-weight-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.45;
}

.pe-weight-breadcrumb a {
    color: var(--pew-paper);
    text-decoration: none;
}

.pe-weight-breadcrumb a:hover,
.pe-weight-breadcrumb a:focus-visible {
    color: var(--pew-paper);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pe-weight-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 68px;
    align-items: center;
}

.pe-weight-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--pew-orange);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pe-weight-eyebrow::before {
    width: 24px;
    height: 3px;
    background: currentColor;
    content: "";
}

.pe-weight-hero .pe-weight-eyebrow {
    color: #ffb18c;
}

.pe-weight-hero h1 {
    max-width: 690px;
    margin: 0;
    color: var(--pew-paper);
    font-family: "MuseoSansBlack", "MuseoSansBold", Arial, sans-serif;
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: 0;
}

.pe-weight-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.65;
}

.pe-weight-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.pe-weight-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--pew-orange);
    border-radius: 8px;
    background: var(--pew-orange);
    color: var(--pew-paper);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.pe-weight-button:hover,
.pe-weight-button:focus-visible {
    border-color: var(--pew-paper);
    background: var(--pew-paper);
    color: var(--pew-ink);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.pe-weight-button--ghost {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.pe-weight-manifest {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(6, 20, 38, 0.34);
    backdrop-filter: blur(8px);
}

.pe-weight-manifest__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
}

.pe-weight-manifest__head strong {
    color: #ffb18c;
}

.pe-weight-manifest__value {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: end;
    padding: 24px 18px 20px;
}

.pe-weight-manifest__value strong {
    color: var(--pew-paper);
    font-family: "MuseoSansBlack", "MuseoSansBold", Arial, sans-serif;
    font-size: 54px;
    line-height: 0.9;
}

.pe-weight-manifest__value span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.35;
}

.pe-weight-manifest dl {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pe-weight-manifest dl div {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pe-weight-manifest dl div:last-child {
    border-bottom: 0;
}

.pe-weight-manifest dt,
.pe-weight-manifest dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.pe-weight-manifest dt {
    color: rgba(255, 255, 255, 0.58);
}

.pe-weight-manifest dd {
    color: var(--pew-paper);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
}

.pe-weight-content {
    padding: 72px 0 88px;
}

.pe-weight-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: end;
    margin-bottom: 24px;
}

.pe-weight-intro h2 {
    margin: 0;
    color: var(--pew-ink);
    font-family: "MuseoSansBlack", "MuseoSansBold", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: 0;
}

.pe-weight-intro p {
    margin: 0;
    color: var(--pew-muted);
    font-size: 15px;
    line-height: 1.6;
}

.pe-weight-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.pe-weight-categories a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--pew-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--pew-ink);
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.pe-weight-categories a:hover,
.pe-weight-categories a:focus-visible {
    border-color: var(--pew-orange);
    background: #fff6f2;
    color: var(--pew-orange);
    outline: none;
}

.pe-weight-table-panel {
    overflow: hidden;
    border: 1px solid var(--pew-line);
    border-radius: 8px;
    background: var(--pew-paper);
    box-shadow: 0 18px 44px rgba(16, 35, 61, 0.08);
}

.pe-weight-table-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--pew-line);
    background: #f7fbff;
}

.pe-weight-table-panel__head div {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.pe-weight-table-panel__head span {
    color: var(--pew-orange);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.pe-weight-table-panel__head strong {
    color: var(--pew-ink);
    font-size: 16px;
}

.pe-weight-table-panel__head a {
    color: var(--pew-ink);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
    font-size: 13px;
    text-decoration: underline;
    text-decoration-color: var(--pew-orange);
    text-underline-offset: 4px;
}

.pe-weight-table-panel__head a:hover,
.pe-weight-table-panel__head a:focus-visible {
    color: var(--pew-orange);
}

.pe-weight-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: #9db1c7 #edf3f8;
}

.pe-weight-table-scroll:focus-visible {
    outline: 3px solid rgba(241, 92, 59, 0.35);
    outline-offset: -3px;
}

.pe-weight-page .pe-weight-table {
    width: 100%;
    min-width: 930px;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.pe-weight-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.pe-weight-page .pe-weight-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 15px 14px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    background: var(--pew-ink);
    color: var(--pew-paper);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
    vertical-align: middle;
}

.pe-weight-page .pe-weight-table thead th:nth-child(n + 3) {
    text-align: center;
}

.pe-weight-page .pe-weight-table tbody td {
    height: 48px;
    padding: 11px 14px;
    border: 0;
    border-right: 1px solid var(--pew-line);
    border-bottom: 1px solid var(--pew-line);
    background: var(--pew-paper);
    color: var(--pew-ink);
    font-size: 14px;
    line-height: 1.4;
    vertical-align: middle;
}

.pe-weight-page .pe-weight-table tbody tr:nth-child(even) td {
    background: #f7fbff;
}

.pe-weight-page .pe-weight-table tbody td[rowspan] {
    border-left: 4px solid var(--pew-orange);
    background: #eef5fb;
    color: var(--pew-route);
    font-family: "MuseoSansBold", "MuseoSansRegular", Arial, sans-serif;
    font-size: 15px;
    vertical-align: top;
}

.pe-weight-page .pe-weight-table tbody td[id] {
    scroll-margin-top: 120px;
}

.pe-weight-page .pe-weight-table tbody td:nth-last-child(-n + 3) {
    color: var(--pew-route);
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.pe-weight-page .pe-weight-table tbody tr:hover td {
    background: #fff6f2;
}

.pe-weight-page .pe-weight-table tbody tr:hover td[rowspan] {
    background: #ffece4;
}

@media (max-width: 900px) {
    .pe-weight-hero__grid,
    .pe-weight-intro {
        grid-template-columns: 1fr;
    }

    .pe-weight-hero__grid {
        gap: 40px;
    }

    .pe-weight-manifest {
        max-width: 560px;
    }

    .pe-weight-intro {
        gap: 16px;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .pe-weight-shell {
        width: min(100% - 28px, 1180px);
    }

    .pe-weight-hero {
        padding: 34px 0 54px;
    }

    .pe-weight-breadcrumb {
        margin-bottom: 26px;
        font-size: 13px;
    }

    .pe-weight-hero h1 {
        font-size: 39px;
        line-height: 1.08;
    }

    .pe-weight-hero p {
        font-size: 16px;
        line-height: 1.55;
    }

    .pe-weight-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pe-weight-button {
        width: 100%;
    }

    .pe-weight-manifest__value strong {
        font-size: 44px;
    }

    .pe-weight-manifest dl div {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .pe-weight-content {
        padding: 50px 0 64px;
    }

    .pe-weight-intro h2 {
        font-size: 30px;
    }

    .pe-weight-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pe-weight-categories a {
        justify-content: center;
        text-align: center;
    }

    .pe-weight-table-panel__head {
        display: block;
        padding: 16px;
    }

    .pe-weight-table-panel__head div {
        display: grid;
        gap: 4px;
    }

    .pe-weight-table-panel__head a {
        display: inline-block;
        margin-top: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pe-weight-page a {
        transition: none;
    }
}
