:root {
    color-scheme: dark;
    --jx-bg: #0a0b0d;
    --jx-deep: #07080a;
    --jx-panel: #14161a;
    --jx-band: #101216;
    --jx-line: #232830;
    --jx-line-strong: #333a45;
    --jx-text: #e9ecef;
    --jx-soft: #c9cfd6;
    --jx-muted: #9aa3ad;
    --jx-accent: #34d399;
    --jx-accent-ink: #03140c;
    --jx-accent-haze: #34d39926;
    --jx-radius: 14px;
    --jx-wide: 1180px;
    --jx-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --jx-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--jx-bg);
    color: var(--jx-text);
    font-family: var(--jx-sans);
    font-size: 17px;
    line-height: 1.65;
}

h1, h2, h3 {
    margin: 0 0 16px;
    line-height: 1.15;
    font-weight: 750;
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.05rem, 5vw, 3.35rem); }

h2 { font-size: clamp(1.45rem, 2.8vw, 1.95rem); }

h3 { font-size: 1.15rem; letter-spacing: 0; }

p { margin: 0 0 16px; }

a { color: var(--jx-accent); text-underline-offset: 3px; }

a:hover { color: #6ee7b7; }

img { max-width: 100%; height: auto; }

table { border-collapse: collapse; }

:focus-visible { outline: 2px solid var(--jx-accent); outline-offset: 2px; }

.jx-skip {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 30;
    padding: 12px 16px;
    background: var(--jx-accent);
    color: var(--jx-accent-ink);
    font-weight: 700;
}

.jx-skip:focus { top: 12px; }

.jx-wrap {
    width: 100%;
    max-width: calc(var(--jx-wide) + 40px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.jx-top { background: var(--jx-deep); border-bottom: 1px solid var(--jx-line); }

.jx-top__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
}

.jx-top__status {
    display: none;
    margin: 0;
    font-family: var(--jx-mono);
    font-size: 13px;
    color: var(--jx-muted);
}

.jx-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: var(--jx-text);
    font-size: 18px;
    font-weight: 750;
    text-decoration: none;
}

.jx-logo__mark { width: 28px; height: 28px; }

.jx-nav { border-top: 1px solid var(--jx-line); }

.jx-nav__list {
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
}

.jx-nav a {
    display: inline-block;
    min-height: 44px;
    padding: 11px 14px 10px;
    border-bottom: 2px solid transparent;
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, border-color 160ms ease;
}

.jx-nav a:hover { color: var(--jx-text); }

.jx-nav a[aria-current="page"] { color: var(--jx-accent); border-bottom-color: var(--jx-accent); }

.jx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid var(--jx-accent);
    border-radius: 10px;
    background: var(--jx-accent);
    color: var(--jx-accent-ink);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 160ms ease, background-color 160ms ease;
}

.jx-btn:hover { color: var(--jx-accent-ink); box-shadow: 0 0 0 4px #34d39940; }

.jx-btn--line { background: transparent; color: var(--jx-accent); }

.jx-btn--line:hover { background: var(--jx-accent-haze); color: var(--jx-accent); }

.jx-btn--small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 15px;
}

.jx-crumbs { padding-top: 14px; }

.jx-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 14px;
}

.jx-crumbs li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--jx-line-strong);
}

.jx-crumbs a {
    display: inline-block;
    padding: 10px 0;
    color: var(--jx-muted);
}

.jx-hero {
    display: grid;
    gap: 32px;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 44px;
}

.jx-hero__byline {
    margin: 0 0 18px;
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 14px;
}

.jx-hero__lead {
    max-width: 38em;
    color: var(--jx-soft);
    font-size: 19px;
}

.jx-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.jx-frame {
    position: relative;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--jx-line);
    background: var(--jx-panel);
}

.jx-frame::before,
.jx-frame::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.jx-frame::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--jx-accent);
    border-left: 2px solid var(--jx-accent);
}

.jx-frame::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--jx-accent);
    border-bottom: 2px solid var(--jx-accent);
}

.jx-frame--spaced { margin-top: 24px; margin-bottom: 24px; }

.jx-frame__img { display: block; width: 100%; }

.jx-frame__cap {
    margin: 10px 2px 2px;
    color: var(--jx-muted);
    font-size: 14px;
    line-height: 1.5;
}

.jx-answer {
    padding: 22px 24px;
    border: 1px solid var(--jx-accent);
    border-radius: var(--jx-radius);
    background: var(--jx-deep);
}

.jx-answer__label {
    display: block;
    margin-bottom: 8px;
    color: var(--jx-accent);
    font-family: var(--jx-mono);
    font-size: 14px;
}

.jx-answer p { margin: 0; font-size: 19px; }

.jx-split {
    display: grid;
    gap: 36px;
    padding-bottom: 24px;
}

.jx-split__rail {
    align-self: start;
    padding: 24px;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-band);
}

.jx-split__rail p { color: var(--jx-soft); }

.jx-split__flow { min-width: 0; }

.jx-sec { padding-top: 52px; }

.jx-sec--first { padding-top: 0; }

.jx-sec--loose { padding-top: 84px; }

.jx-sec__lead {
    max-width: 40em;
    color: var(--jx-soft);
    font-size: 18px;
}

.jx-scroll {
    margin: 22px 0 8px;
    overflow-x: auto;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-panel);
}

.jx-table {
    width: 100%;
    min-width: 640px;
    font-size: 15px;
}

.jx-table caption {
    padding: 14px 16px;
    border-bottom: 1px solid var(--jx-line);
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 13px;
    text-align: left;
}

.jx-table th,
.jx-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--jx-line);
    text-align: left;
    vertical-align: top;
}

.jx-table th[scope="col"] {
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 13px;
    font-weight: 500;
}

.jx-table th[scope="row"] { color: var(--jx-text); font-weight: 700; }

.jx-table tr:last-child th,
.jx-table tr:last-child td { border-bottom: 0; }

.jx-table--big { font-size: 16px; }

.jx-table__note {
    color: var(--jx-muted);
    font-size: 14px;
    font-style: italic;
}

.jx-check {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.jx-check__item {
    position: relative;
    padding: 18px 20px 18px 62px;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-panel);
}

.jx-check__item::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 20px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--jx-accent);
    border-radius: 5px;
}

.jx-check__item::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 28px;
    width: 8px;
    height: 13px;
    border-right: 3px solid var(--jx-accent);
    border-bottom: 3px solid var(--jx-accent);
    transform: rotate(45deg);
}

.jx-check__item--open { border-style: dashed; }

.jx-check__item--open::before { border-color: var(--jx-muted); }

.jx-check__item--open::after { content: none; }

.jx-check__item--major { border-color: var(--jx-line-strong); background: var(--jx-band); }

.jx-check__title {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 750;
}

.jx-check__item p { margin: 0; color: var(--jx-soft); }

.jx-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 22px 0;
    overflow: hidden;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-line);
}

.jx-board__cell { padding: 16px 18px; background: var(--jx-deep); }

.jx-board dd { margin: 0; }

.jx-board__value {
    display: block;
    overflow-wrap: anywhere;
    color: var(--jx-accent);
    font-family: var(--jx-mono);
    font-size: clamp(1.9rem, 5vw, 2.7rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.jx-board__label {
    display: block;
    margin-top: 8px;
    color: var(--jx-muted);
    font-size: 14px;
    line-height: 1.45;
}

.jx-worked {
    margin: 22px 0;
    padding: 20px;
    overflow-x: auto;
    border: 1px solid var(--jx-line);
    border-left: 3px solid var(--jx-accent);
    border-radius: 0 var(--jx-radius) var(--jx-radius) 0;
    background: var(--jx-deep);
    color: var(--jx-soft);
    font-family: var(--jx-mono);
    font-size: 14px;
    line-height: 1.7;
    white-space: pre;
}

.jx-worked b { color: var(--jx-accent); font-weight: 600; }

.jx-terms {
    display: grid;
    margin: 22px 0 0;
    border-top: 1px solid var(--jx-line);
}

.jx-terms__pair { padding: 14px 0; border-bottom: 1px solid var(--jx-line); }

.jx-terms dt {
    color: var(--jx-accent);
    font-family: var(--jx-mono);
    font-size: 15px;
}

.jx-terms dd { margin: 4px 0 0; color: var(--jx-soft); }

.jx-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.jx-toc a {
    display: inline-block;
    min-height: 44px;
    padding: 11px 14px;
    border: 1px solid var(--jx-line-strong);
    border-radius: 8px;
    color: var(--jx-soft);
    font-family: var(--jx-mono);
    font-size: 14px;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease;
}

.jx-toc a:hover { border-color: var(--jx-accent); color: var(--jx-accent); }

.jx-column { max-width: 800px; padding-bottom: 24px; }

.jx-steps {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: jx-step;
}

.jx-steps__item {
    position: relative;
    padding: 0 0 48px 66px;
    counter-increment: jx-step;
}

.jx-steps__item::before {
    content: counter(jx-step, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--jx-accent);
    border-radius: 6px;
    background: var(--jx-bg);
    color: var(--jx-accent);
    font-family: var(--jx-mono);
    font-size: 15px;
}

.jx-steps__item::after {
    content: "";
    position: absolute;
    top: 52px;
    bottom: 6px;
    left: 23px;
    width: 1px;
    background: var(--jx-line-strong);
}

.jx-steps__item:last-child { padding-bottom: 0; }

.jx-steps__item:last-child::after { content: none; }

.jx-bento {
    display: grid;
    gap: 14px;
    padding-bottom: 24px;
}

.jx-bento__tile {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-panel);
}

.jx-bento__tile--dark { background: var(--jx-deep); }

.jx-zig {
    display: grid;
    gap: 64px;
    padding-top: 12px;
    padding-bottom: 24px;
}

.jx-zig__row {
    display: grid;
    gap: 24px;
    align-items: center;
}

.jx-zig__body { min-width: 0; }

.jx-band { padding-top: 56px; padding-bottom: 56px; }

.jx-band--raised { background: var(--jx-band); }

.jx-band--hero { padding-top: 0; padding-bottom: 40px; }

.jx-band__inner { max-width: 860px; }

.jx-band__split {
    display: grid;
    gap: 24px;
    align-items: center;
}

.jx-offset {
    display: grid;
    gap: 48px;
    padding-top: 20px;
    padding-bottom: 24px;
}

.jx-offset__block { min-width: 0; }

.jx-compare {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.jx-compare__item {
    min-width: 0;
    padding: 20px 22px;
    border-top: 2px solid var(--jx-accent);
    background: var(--jx-panel);
}

.jx-compare__item p { margin: 0 0 10px; color: var(--jx-soft); }

.jx-cards {
    display: grid;
    gap: 16px;
    align-items: start;
    margin-top: 24px;
}

.jx-cards__item {
    min-width: 0;
    padding: 20px 22px;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-panel);
}

.jx-cards__item p { margin: 0; color: var(--jx-soft); }

.jx-scheme {
    margin: 24px 0;
    padding: 16px;
    overflow-x: auto;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
    background: var(--jx-deep);
}

.jx-scheme svg {
    display: block;
    width: 100%;
    min-width: 540px;
    height: auto;
}

.jx-scheme__cap {
    margin: 10px 0 0;
    color: var(--jx-muted);
    font-size: 14px;
}

.jx-myth {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.jx-myth__item {
    padding: 18px 20px;
    border-left: 3px solid var(--jx-line-strong);
    border-radius: 0 var(--jx-radius) var(--jx-radius) 0;
    background: var(--jx-panel);
}

.jx-myth__claim {
    margin: 0 0 6px;
    color: var(--jx-muted);
    text-decoration: line-through;
    text-decoration-color: #9aa3ad99;
}

.jx-myth__fact { margin: 0 0 6px; }

.jx-myth__src {
    margin: 0;
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 13px;
}

.jx-faq { margin-top: 20px; border-top: 1px solid var(--jx-line); }

.jx-faq__item { border-bottom: 1px solid var(--jx-line); }

.jx-faq__q {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    padding: 16px 0;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

.jx-faq__q::-webkit-details-marker { display: none; }

.jx-faq__q::after {
    content: "+";
    color: var(--jx-accent);
    font-family: var(--jx-mono);
}

.jx-faq__item[open] .jx-faq__q::after { content: "\2212"; }

.jx-faq__a { margin: 0 0 18px; color: var(--jx-soft); }

.jx-limits {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    border: 1px dashed var(--jx-line-strong);
    border-radius: var(--jx-radius);
}

.jx-limits__item {
    padding: 14px 18px;
    border-bottom: 1px dashed var(--jx-line-strong);
    color: var(--jx-soft);
}

.jx-limits__item:last-child { border-bottom: 0; }

.jx-errors {
    display: grid;
    gap: 18px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: jx-err;
}

.jx-errors__item {
    position: relative;
    padding-left: 52px;
    color: var(--jx-soft);
    counter-increment: jx-err;
}

.jx-errors__item::before {
    content: "E" counter(jx-err);
    position: absolute;
    top: 2px;
    left: 0;
    padding: 1px 7px;
    border-radius: 4px;
    background: var(--jx-accent);
    color: var(--jx-accent-ink);
    font-family: var(--jx-mono);
    font-size: 14px;
    font-weight: 600;
}

.jx-errors__item strong { display: block; color: var(--jx-text); }

.jx-time {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    border-left: 1px solid var(--jx-line-strong);
}

.jx-time__item {
    position: relative;
    padding: 0 0 22px 26px;
    color: var(--jx-soft);
}

.jx-time__item::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -5px;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--jx-accent);
}

.jx-time__date {
    display: block;
    color: var(--jx-accent);
    font-family: var(--jx-mono);
    font-size: 14px;
}

.jx-nums {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.jx-nums__cell {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--jx-line);
    border-radius: var(--jx-radius);
}

.jx-nums dt {
    color: var(--jx-muted);
    font-size: 14px;
    line-height: 1.4;
}

.jx-nums dd {
    margin: 6px 0 0;
    color: var(--jx-text);
    font-family: var(--jx-mono);
    font-size: clamp(1.1rem, 4.4vw, 1.6rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.jx-store {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-top: 32px;
    padding: 18px 20px;
    border: 1px solid var(--jx-line-strong);
    border-radius: var(--jx-radius);
}

.jx-store__note {
    margin: 0;
    color: var(--jx-muted);
    font-size: 14px;
}

.jx-cta {
    margin-top: 72px;
    padding: 30px 26px;
    border: 1px solid var(--jx-line);
    border-left: 4px solid var(--jx-accent);
    border-radius: var(--jx-radius);
    background: var(--jx-deep);
}

.jx-cta__title { font-size: clamp(1.5rem, 3.2vw, 2.15rem); }

.jx-cta__note {
    margin: 16px 0 0;
    color: var(--jx-muted);
    font-size: 14px;
}

.jx-legal {
    max-width: 780px;
    padding-top: 24px;
    padding-bottom: 12px;
}

.jx-legal h2 { margin-top: 38px; font-size: 1.3rem; }

.jx-legal ul { padding-left: 20px; }

.jx-legal dl { margin: 0 0 16px; }

.jx-legal dt {
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 13px;
}

.jx-legal dd { margin: 0 0 10px; }

.jx-legal__meta {
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 14px;
}

.jx-lost { padding-top: 72px; padding-bottom: 24px; }

.jx-lost__code {
    margin: 0 0 8px;
    color: var(--jx-accent);
    font-family: var(--jx-mono);
    font-size: clamp(3.5rem, 14vw, 7rem);
    line-height: 1;
}

.jx-foot {
    margin-top: 88px;
    padding-top: 14px;
    padding-bottom: 20px;
    border-top: 1px solid var(--jx-line);
}

.jx-foot__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px 24px;
}

.jx-foot__owner {
    margin: 0;
    color: var(--jx-muted);
    font-size: 14px;
}

.jx-foot__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jx-foot__legal a {
    display: inline-block;
    min-height: 44px;
    padding: 12px 0;
    color: var(--jx-muted);
    font-size: 14px;
}

.jx-consent {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    max-width: 430px;
    margin-left: auto;
    border: 1px solid var(--jx-line-strong);
    border-radius: 10px;
    background: var(--jx-deep);
    box-shadow: 0 18px 44px #000000b3;
}

.jx-consent[hidden] { display: none; }

.jx-consent__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 14px;
    border-bottom: 1px solid var(--jx-line);
    color: var(--jx-muted);
    font-family: var(--jx-mono);
    font-size: 13px;
}

.jx-consent__bar::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jx-accent);
}

.jx-consent__text {
    margin: 0;
    padding: 14px 14px 2px;
    color: var(--jx-soft);
    font-family: var(--jx-mono);
    font-size: 14px;
    line-height: 1.55;
}

.jx-consent__row {
    display: flex;
    gap: 10px;
    padding: 12px 14px 14px;
}

.jx-consent__row .jx-btn {
    flex: 1 1 0;
    padding-left: 12px;
    padding-right: 12px;
}

.js .jx-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.js .jx-reveal.is-seen { opacity: 1; transform: none; }

@media (min-width: 760px) {
    .jx-top__status { display: block; }

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

    .jx-board--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .jx-terms { grid-template-columns: 1fr 1fr; column-gap: 32px; }

    .jx-nums { grid-template-columns: repeat(3, minmax(0, 1fr)); }

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

    .jx-bento__tile--wide,
    .jx-bento__tile--full { grid-column: 1 / -1; }

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

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

    .jx-cta { padding: 40px 44px; } }

@media (min-width: 960px) {
    .jx-hero {
        grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
        gap: 56px;
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .jx-zig__row { grid-template-columns: minmax(0, 1fr) 430px; gap: 52px; }

    .jx-zig__row--flip { grid-template-columns: 430px minmax(0, 1fr); }

    .jx-zig__row--flip .jx-zig__media { order: -1; }

    .jx-zig__row--text { grid-template-columns: minmax(0, 760px); }

    .jx-band__split { grid-template-columns: minmax(0, 1fr) 460px; gap: 52px; }
}

@media (min-width: 1000px) {
    .jx-split { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 56px; }

    .jx-split__rail { position: sticky; top: 24px; }

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

    .jx-bento__tile--big { grid-column: span 2; grid-row: span 2; }

    .jx-bento__tile--wide { grid-column: span 2; }

    .jx-offset {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 64px;
    }

    .jx-offset__block--a { grid-column: 2 / 10; }

    .jx-offset__block--b { grid-column: 1 / 8; }

    .jx-offset__block--c { grid-column: 5 / 13; }

    .jx-offset__block--d { grid-column: 3 / 12; }

    .jx-compare { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .jx-table { min-width: 0; }

    .jx-legal h2 { font-size: 1.4rem; } }

@media (min-width: 1100px) {
    .jx-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
    .js .jx-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jx-btn,
    .jx-nav a,
    .jx-toc a { transition: none; } }
