:root {
    --jp-navy: #071a2b;
    --jp-navy-2: #0d2a41;
    --jp-teal: #0b7f7a;
    --jp-teal-soft: #e9f5f3;
    --jp-platinum: #aeb8c4;
    --jp-ink: #172c3d;
    --jp-muted: #5d7181;
    --jp-line: #d9e3e8;
    --jp-soft: #f4f7f8;
    --jp-white: #fff;
    --jp-danger: #a53b43;
    --jp-warning: #8c6715;
    --jp-radius: 20px;
    --jp-shadow: 0 22px 60px rgba(7, 26, 43, 0.08);
}

.jp-page {
    color: var(--jp-ink);
    background: var(--jp-white);
}

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

.jp-page a,
.jp-page button,
.jp-page input {
    -webkit-tap-highlight-color: transparent;
}

.jp-page a:focus-visible,
.jp-page button:focus-visible,
.jp-page input:focus-visible {
    outline: 3px solid rgba(11, 127, 122, 0.36);
    outline-offset: 3px;
}

.jp-page h1,
.jp-page h2,
.jp-page h3,
.jp-page h4,
.jp-page p,
.jp-page dl,
.jp-page ol {
    margin-top: 0;
}

.jp-page h1,
.jp-page h2 {
    color: var(--jp-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.jp-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--jp-teal);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.jp-icon,
.jl-icon {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
}

.jp-breadcrumb {
    padding-block: 20px;
}

.jp-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    color: var(--jp-muted);
    font-size: 0.78rem;
}

.jp-breadcrumb li:not(:last-child)::after {
    margin-left: 8px;
    color: var(--jp-platinum);
    content: "/";
}

.jp-breadcrumb a {
    color: var(--jp-teal);
    text-decoration: none;
}

.jp-record-strip {
    color: #d8e4eb;
    background: var(--jp-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.jp-record-strip .shell {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.jp-record-strip .shell > div {
    min-width: 0;
    padding: 17px 19px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.jp-record-strip .shell > div:first-child {
    padding-left: 0;
}

.jp-record-strip span,
.jp-record-strip strong {
    display: block;
}

.jp-record-strip span {
    margin-bottom: 4px;
    color: #8fa9b9;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.jp-record-strip strong {
    overflow: hidden;
    color: #fff;
    font-size: 0.77rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
    background:
        linear-gradient(rgba(7, 26, 43, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 26, 43, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #fff, #f6f9f9);
    background-size: 72px 72px, 72px 72px, auto;
}

.jp-hero::after {
    position: absolute;
    top: 50px;
    right: 6%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(11, 127, 122, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.jp-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: clamp(46px, 7vw, 108px);
    align-items: center;
}

.jp-hero h1 {
    max-width: 930px;
    margin-bottom: 12px;
    font-size: clamp(2.65rem, 5.1vw, 5.65rem);
    line-height: 0.99;
}

.jp-abbreviation {
    margin-bottom: 22px;
    color: var(--jp-muted);
    font-size: 1.02rem;
    font-weight: 800;
}

.jp-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.jp-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 31px;
    padding: 6px 11px;
    color: #435766;
    background: #eef2f4;
    border: 1px solid #dbe3e7;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.035em;
}

.jp-status--verified,
.jp-status--evaluated {
    color: #08635f;
    background: #e6f5f2;
    border-color: #bee3dd;
}

.jp-status--pending,
.jp-status--progress {
    color: #75560d;
    background: #fff8df;
    border-color: #eadba9;
}

.jp-status--restricted {
    color: #88313a;
    background: #fff0f1;
    border-color: #edc9cc;
}

.jp-status-summary {
    max-width: 760px;
    margin-bottom: 27px;
    color: #4f6474;
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.75;
}

.jp-hero__actions,
.jp-certificate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.jp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 11px 17px;
    border: 1px solid transparent;
    border-radius: 12px;
    font: inherit;
    font-size: 0.79rem;
    font-weight: 850;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
}

.jp-button--primary {
    color: #fff;
    background: var(--jp-teal);
    border-color: var(--jp-teal);
}

.jp-button--secondary {
    color: var(--jp-navy);
    background: #fff;
    border-color: #bfced6;
}

.jp-button--quiet {
    color: #41586a;
    background: transparent;
    border-color: #d3dfe4;
}

.jp-button:hover {
    transform: translateY(-1px);
}

.jp-result-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 28px;
    box-shadow: var(--jp-shadow);
}

.jp-result-card--released::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--jp-teal);
    content: "";
}

.jp-result-card__top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin-bottom: 29px;
    padding-bottom: 18px;
    color: var(--jp-muted);
    border-bottom: 1px solid var(--jp-line);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jp-live-mark {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--jp-teal);
}

.jp-live-mark i {
    width: 8px;
    height: 8px;
    background: #2ab8ac;
    border: 5px solid rgba(42, 184, 172, 0.14);
    border-radius: 50%;
    box-sizing: content-box;
}

.jp-live-mark--pending {
    color: var(--jp-warning);
}

.jp-live-mark--pending i {
    background: #d09a24;
    border-color: rgba(208, 154, 36, 0.14);
}

.jp-result-card > p:first-of-type {
    margin-bottom: 4px;
    color: var(--jp-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.jp-result-value {
    display: block;
    color: var(--jp-navy);
    font: 500 clamp(4rem, 7vw, 6.7rem)/1 Georgia, "Times New Roman", serif;
    letter-spacing: -0.065em;
}

.jp-result-year {
    margin: 3px 0 27px;
    color: var(--jp-teal);
    font-size: 0.83rem;
    font-weight: 850;
}

.jp-result-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 24px;
    border: 1px solid var(--jp-line);
    border-radius: 13px;
}

.jp-result-card dl > div {
    padding: 13px 15px;
    border-bottom: 1px solid var(--jp-line);
}

.jp-result-card dl > div:nth-child(odd) {
    border-right: 1px solid var(--jp-line);
}

.jp-result-card dl > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.jp-result-card dt,
.jp-data-register dt,
.jp-certificate-card dt {
    margin-bottom: 4px;
    color: var(--jp-muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.jp-result-card dd,
.jp-data-register dd,
.jp-certificate-card dd {
    margin: 0;
    color: var(--jp-navy);
    font-size: 0.77rem;
    font-weight: 800;
}

.jp-result-disclosure {
    margin-bottom: 0;
    color: var(--jp-muted);
    font-size: 0.72rem;
    line-height: 1.65;
}

.jp-no-result-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    color: var(--jp-teal);
    background: var(--jp-teal-soft);
    border-radius: 18px;
}

.jp-no-result-icon .jp-icon,
.jp-no-result-icon .jl-icon {
    width: 30px;
    height: 30px;
}

.jp-result-card--pending h2 {
    margin-bottom: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.jp-result-card--pending > p {
    color: var(--jp-muted);
    line-height: 1.65;
}

.jp-result-card--pending > a {
    color: var(--jp-teal);
    font-size: 0.78rem;
    font-weight: 850;
}

.jp-section-nav {
    position: sticky;
    z-index: 40;
    top: var(--header-height, 0);
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.97);
    border-block: 1px solid var(--jp-line);
    backdrop-filter: blur(12px);
}

.jp-section-nav .shell {
    display: flex;
    gap: 3px;
    min-width: max-content;
}

.jp-section-nav a {
    position: relative;
    padding: 17px 15px;
    color: #475d6d;
    font-size: 0.73rem;
    font-weight: 850;
    text-decoration: none;
}

.jp-section-nav a:hover,
.jp-section-nav a:focus-visible,
.jp-section-nav a.is-active {
    color: var(--jp-teal);
}

.jp-section-nav a.is-active::after {
    position: absolute;
    right: 15px;
    bottom: -1px;
    left: 15px;
    height: 3px;
    background: var(--jp-teal);
    content: "";
}

.jp-section {
    padding-block: clamp(68px, 8vw, 112px);
    scroll-margin-top: 130px;
}

.jp-section--soft {
    background: var(--jp-soft);
}

.jp-section--soft > .shell {
    width: min(1640px, calc(100% - 72px));
    margin-inline: auto;
}

.jp-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 42px;
}

.jp-section__heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1;
}

.jp-section__heading > p {
    margin-bottom: 5px;
    color: var(--jp-muted);
    font-size: 0.91rem;
    line-height: 1.7;
}

.jp-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 0;
    overflow: hidden;
    border: 1px solid var(--jp-line);
    border-radius: var(--jp-radius);
}

.jp-fact {
    min-width: 0;
    min-height: 115px;
    padding: 24px;
    background: #fff;
    border-right: 1px solid var(--jp-line);
    border-bottom: 1px solid var(--jp-line);
}

.jp-fact:nth-child(4n) {
    border-right: 0;
}

.jp-fact:nth-last-child(-n+4) {
    border-bottom: 0;
}

.jp-fact dt {
    margin-bottom: 10px;
    color: var(--jp-muted);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jp-fact dd {
    overflow-wrap: anywhere;
    margin: 0;
    color: var(--jp-navy);
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.5;
}

.jp-public-note {
    margin: 24px 0 0;
    padding: 17px 20px;
    color: #3d5364;
    background: var(--jp-teal-soft);
    border-left: 4px solid var(--jp-teal);
    border-radius: 0 12px 12px 0;
    line-height: 1.7;
}

.jp-metric-grid,
.jp-citation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.jp-metric-card {
    min-height: 142px;
    padding: 23px;
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 16px;
}

.jp-metric-card > span,
.jp-metric-card > strong,
.jp-metric-card > small {
    display: block;
}

.jp-metric-card > span {
    margin-bottom: 17px;
    color: var(--jp-muted);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.jp-metric-card > strong {
    overflow-wrap: anywhere;
    color: var(--jp-navy);
    font: 500 clamp(1.35rem, 2vw, 2rem)/1.15 Georgia, "Times New Roman", serif;
}

.jp-metric-card > small {
    margin-top: 8px;
    color: var(--jp-muted);
    font-size: 0.68rem;
}

.jp-subsection {
    margin-top: 56px;
}

.jp-subsection__heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 24px;
}

.jp-subsection__heading h3 {
    margin-bottom: 0;
    color: var(--jp-navy);
    font-size: 1.35rem;
}

.jp-subsection__heading p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--jp-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.jp-dimensions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.jp-dimension {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 16px;
}

.jp-dimension__top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}

.jp-dimension h4 {
    margin: 0 0 5px;
    color: var(--jp-navy);
    font-size: 0.94rem;
}

.jp-dimension__top span {
    color: var(--jp-muted);
    font-size: 0.67rem;
    font-weight: 750;
}

.jp-dimension__top strong {
    color: var(--jp-teal);
    font-size: 0.83rem;
}

.jp-progress {
    height: 8px;
    margin: 19px 0;
    overflow: hidden;
    background: #e4ecef;
    border-radius: 999px;
}

.jp-progress i {
    display: block;
    height: 100%;
    background: var(--jp-teal);
    border-radius: inherit;
}

.jp-dimension > p {
    min-height: 44px;
    margin-bottom: 16px;
    color: var(--jp-muted);
    font-size: 0.77rem;
    line-height: 1.65;
}

.jp-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 16px;
}

.jp-table-wrap table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.jp-table-wrap th,
.jp-table-wrap td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--jp-line);
    color: #43596a;
    font-size: 0.74rem;
    text-align: left;
}

.jp-table-wrap thead th {
    color: #fff;
    background: var(--jp-navy);
    font-size: 0.67rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.jp-table-wrap tbody th {
    color: var(--jp-navy);
    font-weight: 850;
}

.jp-table-wrap tbody tr:last-child > * {
    border-bottom: 0;
}

.jp-data-register {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 20px 0 0;
    overflow: hidden;
    border: 1px solid var(--jp-line);
    border-radius: 15px;
}

.jp-data-register > div {
    min-width: 0;
    padding: 19px;
    border-right: 1px solid var(--jp-line);
}

.jp-data-register > div:last-child {
    border-right: 0;
}

.jp-notice {
    margin: 18px 0 0;
    padding: 16px 19px;
    border-radius: 11px;
    font-size: 0.78rem;
    line-height: 1.65;
}

.jp-notice--neutral {
    color: #405a68;
    background: #eef5f6;
    border: 1px solid #cfdee2;
}

.jp-notice--danger {
    color: #7e2e36;
    background: #fff0f1;
    border: 1px solid #ebc5c8;
}

.jp-empty-state {
    padding: 48px;
    color: var(--jp-muted);
    background: #fff;
    border: 1px dashed #c8d6dd;
    border-radius: var(--jp-radius);
    text-align: center;
}

.jp-empty-state .jp-icon,
.jp-empty-state .jl-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    color: var(--jp-teal);
}

.jp-empty-state h3 {
    margin-bottom: 9px;
    color: var(--jp-navy);
    font-size: 1.12rem;
}

.jp-empty-state p {
    margin-bottom: 0;
    line-height: 1.65;
}

.jp-chart-shell {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: var(--jp-radius);
}

.jp-history-chart {
    display: block;
    width: 100%;
    max-height: 320px;
}

.jp-chart-axis {
    fill: none;
    stroke: #aebdc5;
    stroke-width: 1.5;
}

.jp-chart-grid {
    fill: none;
    stroke: #dfe7ea;
    stroke-dasharray: 4 6;
    stroke-width: 1;
}

.jp-chart-line {
    fill: none;
    stroke: var(--jp-teal);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.jp-chart-point {
    fill: #fff;
    stroke: var(--jp-navy);
    stroke-width: 3;
}

.jp-chart-year {
    fill: #627684;
    font: 700 12px Arial, sans-serif;
}

.jp-methodology-intro {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.8fr;
    overflow: hidden;
    border: 1px solid var(--jp-line);
    border-radius: 15px;
}

.jp-methodology-intro > div {
    padding: 21px;
    border-right: 1px solid var(--jp-line);
}

.jp-methodology-intro > div:last-child {
    border-right: 0;
}

.jp-methodology-intro span,
.jp-methodology-intro strong {
    display: block;
}

.jp-methodology-intro span {
    margin-bottom: 7px;
    color: var(--jp-muted);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.jp-methodology-intro strong {
    color: var(--jp-navy);
}

.jp-methodology-summary {
    max-width: 1100px;
    margin: 25px 0 28px;
    color: #40596a;
    line-height: 1.8;
}

.jp-accordion-group {
    border-top: 1px solid var(--jp-line);
}

.jp-accordion {
    border-bottom: 1px solid var(--jp-line);
}

.jp-accordion h3 {
    margin: 0;
}

.jp-accordion button {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 15px 4px;
    color: var(--jp-navy);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.jp-accordion button span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--jp-teal);
    background: var(--jp-teal-soft);
    border-radius: 50%;
    font-size: 1.15rem;
}

.jp-accordion button[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.jp-accordion > div {
    padding: 0 50px 20px 4px;
}

.jp-accordion > div p {
    margin-bottom: 0;
    color: var(--jp-muted);
    font-size: 0.8rem;
    line-height: 1.75;
}

.jp-text-link,
.jp-evidence-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--jp-teal);
    font-size: 0.77rem;
    font-weight: 850;
    text-decoration: none;
}

.jp-evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.jp-evidence-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 17px;
}

.jp-evidence-card > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.jp-evidence-source {
    color: var(--jp-muted);
    font-size: 0.63rem;
    font-weight: 750;
}

.jp-evidence-card h3 {
    margin: 20px 0 9px;
    color: var(--jp-navy);
    font-size: 1rem;
}

.jp-evidence-card > p {
    min-height: 50px;
    color: var(--jp-muted);
    font-size: 0.75rem;
    line-height: 1.65;
}

.jp-evidence-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid var(--jp-line);
}

.jp-evidence-card dt {
    color: var(--jp-muted);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.jp-evidence-card dd {
    margin: 5px 0 0;
    color: var(--jp-navy);
    font-size: 0.7rem;
    font-weight: 800;
}

.jp-timeline {
    position: relative;
    max-width: 980px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jp-timeline::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 24px;
    width: 1px;
    background: #b9cbd2;
    content: "";
}

.jp-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;
    padding-bottom: 27px;
}

.jp-timeline li > span {
    z-index: 1;
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    color: var(--jp-teal);
    background: #fff;
    border: 2px solid #b9d9d6;
    border-radius: 50%;
}

.jp-timeline li > div {
    padding: 5px 0 0;
}

.jp-timeline time {
    color: var(--jp-muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.jp-timeline h3 {
    margin: 6px 0;
    color: var(--jp-navy);
    font-size: 0.96rem;
}

.jp-timeline p {
    margin-bottom: 0;
    color: var(--jp-muted);
    font-size: 0.77rem;
    line-height: 1.65;
}

.jp-certificate-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 30px;
    padding: clamp(26px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: var(--jp-radius);
}

.jp-certificate-card__mark {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    color: var(--jp-teal);
    background: var(--jp-teal-soft);
    border-radius: 23px;
}

.jp-certificate-card__mark .jp-icon,
.jp-certificate-card__mark .jl-icon {
    width: 43px;
    height: 43px;
}

.jp-certificate-card h3 {
    margin: 13px 0 22px;
    color: var(--jp-navy);
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    overflow-wrap: anywhere;
}

.jp-certificate-card dl {
    display: grid;
    grid-template-columns: 0.7fr 0.9fr 2fr;
    margin-bottom: 23px;
}

.jp-certificate-card dl > div {
    min-width: 0;
    padding-right: 20px;
}

.jp-fingerprint {
    overflow-wrap: anywhere;
    font-family: Consolas, Monaco, monospace;
}

.jp-corrections {
    display: grid;
    gap: 12px;
}

.jp-corrections article {
    padding: 23px 25px;
    border: 1px solid var(--jp-line);
    border-left: 4px solid var(--jp-warning);
    border-radius: 0 14px 14px 0;
}

.jp-corrections time,
.jp-corrections article > span {
    color: var(--jp-muted);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.jp-corrections h3 {
    margin: 7px 0;
    color: var(--jp-navy);
    font-size: 1rem;
}

.jp-corrections p {
    margin-bottom: 8px;
    color: var(--jp-muted);
    font-size: 0.78rem;
    line-height: 1.7;
}

.jp-responsible {
    padding-block: clamp(65px, 8vw, 105px);
    color: #c2d3dc;
    background: var(--jp-navy);
}

.jp-responsible__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(50px, 8vw, 130px);
}

.jp-responsible h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1;
}

.jp-responsible p {
    color: #c4d3db;
    font-size: 0.9rem;
    line-height: 1.85;
}

.jp-responsible p + p {
    margin-bottom: 0;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.jp-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.jp-action-grid a {
    position: relative;
    min-height: 190px;
    padding: 25px;
    color: var(--jp-navy);
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 16px;
    text-decoration: none;
}

.jp-action-grid a:hover {
    border-color: #9bc9c5;
    box-shadow: 0 18px 40px rgba(7, 26, 43, 0.07);
    transform: translateY(-2px);
}

.jp-action-grid strong,
.jp-action-grid span {
    display: block;
}

.jp-action-grid strong {
    margin-bottom: 11px;
    font-size: 0.95rem;
}

.jp-action-grid span {
    color: var(--jp-muted);
    font-size: 0.75rem;
    line-height: 1.65;
}

.jp-action-grid .jp-icon,
.jp-action-grid .jl-icon {
    position: absolute;
    right: 22px;
    bottom: 22px;
    color: var(--jp-teal);
}

.jp-section--faq {
    padding-top: 20px;
}

.jp-section--faq .jp-accordion-group {
    max-width: 1080px;
}

.jp-final-nav {
    padding-block: 55px;
    background: var(--jp-teal-soft);
    border-top: 1px solid #cfe2e0;
}

.jp-final-nav .shell {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: center;
}

.jp-final-nav h2 {
    max-width: 590px;
    margin-bottom: 0;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.05;
}

.jp-final-nav nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.jp-final-nav nav a {
    padding: 10px 13px;
    color: var(--jp-navy);
    background: #fff;
    border: 1px solid #c8dcda;
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.jp-state-page {
    min-height: 65vh;
    padding-block: clamp(90px, 12vw, 170px);
}

.jp-state-page h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1;
}

.jp-state-page > p {
    max-width: 720px;
    color: var(--jp-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.jp-state-page form {
    max-width: 720px;
    margin-top: 33px;
}

.jp-state-page form label {
    display: block;
    margin-bottom: 9px;
    color: var(--jp-navy);
    font-size: 0.74rem;
    font-weight: 850;
}

.jp-state-page form > div {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #bfced6;
    border-radius: 13px;
}

.jp-state-page form .jp-icon,
.jp-state-page form .jl-icon {
    margin-left: 15px;
    color: var(--jp-teal);
}

.jp-state-page input {
    flex: 1;
    min-width: 0;
    min-height: 52px;
    padding: 11px 14px;
    border: 0;
    font: inherit;
}

.jp-state-page form button {
    min-height: 52px;
    padding: 10px 18px;
    color: #fff;
    background: var(--jp-teal);
    border: 0;
    font: inherit;
    font-size: 0.77rem;
    font-weight: 850;
}

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

@media (max-width: 1180px) {
    .jp-record-strip .shell {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jp-record-strip .shell > div:nth-child(3n) {
        border-right: 0;
    }

    .jp-record-strip .shell > div:first-child,
    .jp-record-strip .shell > div:nth-child(4) {
        padding-left: 19px;
    }

    .jp-hero__grid {
        grid-template-columns: 1fr;
    }

    .jp-result-card {
        max-width: 760px;
    }

    .jp-facts-grid,
    .jp-metric-grid,
    .jp-citation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jp-fact:nth-child(4n) {
        border-right: 1px solid var(--jp-line);
    }

    .jp-fact:nth-child(2n) {
        border-right: 0;
    }

    .jp-fact:nth-last-child(-n+4) {
        border-bottom: 1px solid var(--jp-line);
    }

    .jp-fact:nth-last-child(-n+2) {
        border-bottom: 0;
    }

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

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

@media (max-width: 760px) {
    .jp-record-strip {
        overflow-x: auto;
    }

    .jp-record-strip .shell {
        display: flex;
        width: max-content;
        min-width: 100%;
        padding-inline: 20px;
    }

    .jp-record-strip .shell > div {
        width: 175px;
        flex: 0 0 auto;
        padding: 14px;
    }

    .jp-record-strip .shell > div:first-child,
    .jp-record-strip .shell > div:nth-child(4) {
        padding-left: 0;
    }

    .jp-hero {
        padding: 48px 0 58px;
        background-size: 52px 52px, 52px 52px, auto;
    }

    .jp-hero__grid,
    .jp-section--soft > .shell {
        width: min(100% - 32px, 1640px);
    }

    .jp-hero__grid {
        gap: 35px;
    }

    .jp-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .jp-hero__actions,
    .jp-certificate-actions {
        display: grid;
    }

    .jp-button {
        width: 100%;
    }

    .jp-result-card {
        padding: 25px 22px;
        border-radius: 20px;
    }

    .jp-result-card__top {
        align-items: flex-start;
    }

    .jp-result-card dl {
        grid-template-columns: 1fr;
    }

    .jp-result-card dl > div,
    .jp-result-card dl > div:nth-child(odd),
    .jp-result-card dl > div:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--jp-line);
    }

    .jp-result-card dl > div:last-child {
        border-bottom: 0;
    }

    .jp-section-nav .shell {
        padding-inline: 8px;
    }

    .jp-section {
        padding-block: 64px;
    }

    .jp-section__heading {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .jp-section__heading h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .jp-facts-grid,
    .jp-metric-grid,
    .jp-citation-grid,
    .jp-dimensions,
    .jp-evidence-grid,
    .jp-action-grid {
        grid-template-columns: 1fr;
    }

    .jp-fact,
    .jp-fact:nth-child(2n),
    .jp-fact:nth-last-child(-n+2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--jp-line);
    }

    .jp-fact:last-child {
        border-bottom: 0;
    }

    .jp-subsection__heading {
        display: block;
    }

    .jp-subsection__heading p {
        margin-top: 8px;
    }

    .jp-data-register,
    .jp-methodology-intro {
        grid-template-columns: 1fr;
    }

    .jp-data-register > div,
    .jp-methodology-intro > div {
        border-right: 0;
        border-bottom: 1px solid var(--jp-line);
    }

    .jp-data-register > div:last-child,
    .jp-methodology-intro > div:last-child {
        border-bottom: 0;
    }

    .jp-empty-state {
        padding: 34px 22px;
    }

    .jp-chart-shell {
        padding: 8px;
    }

    .jp-history-chart {
        min-width: 620px;
    }

    .jp-chart-shell {
        overflow-x: auto;
    }

    .jp-evidence-card > div:first-child {
        align-items: flex-start;
    }

    .jp-certificate-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jp-certificate-card__mark {
        width: 70px;
        height: 70px;
    }

    .jp-certificate-card dl {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jp-responsible__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .jp-final-nav .shell {
        display: block;
    }

    .jp-final-nav nav {
        justify-content: flex-start;
        margin-top: 28px;
    }

    .jp-state-page form > div {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .jp-state-page form button {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jp-page *,
    .jp-page *::before,
    .jp-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

@media print {
    .site-utility,
    .site-header nav,
    .jp-breadcrumb,
    .jp-section-nav,
    .jp-hero__actions,
    .jp-action-grid,
    .jp-final-nav,
    .site-footer nav {
        display: none !important;
    }

    .jp-page {
        color: #000;
        background: #fff;
        font-size: 10pt;
    }

    .jp-hero,
    .jp-section,
    .jp-responsible {
        padding-block: 22pt;
        color: #000;
        background: #fff !important;
    }

    .jp-hero__grid,
    .jp-section__heading,
    .jp-responsible__grid {
        display: block;
    }

    .jp-result-card,
    .jp-fact,
    .jp-metric-card,
    .jp-evidence-card,
    .jp-certificate-card,
    .jp-table-wrap {
        break-inside: avoid;
        box-shadow: none;
    }

    .jp-section--soft,
    .jp-section--soft > .shell {
        background: #fff;
    }

    .jp-record-strip {
        color: #000;
        background: #fff;
        border-block: 1px solid #999;
    }

    .jp-record-strip span,
    .jp-record-strip strong,
    .jp-responsible h2,
    .jp-responsible p {
        color: #000;
    }

    .jp-accordion > div[hidden] {
        display: block !important;
    }
}
