/* Self-hosted fonts — see build/PHOTOGRAPHY-AND-FONTS.md. Licences ship in assets/fonts/. */
@font-face {
    font-family: Manrope;
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../fonts/manrope-latin-variable.woff2") format("woff2-variations");
}
@font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}
@font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
}
@font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
}

:root {
    --plum: #1B1420;
    --plum-raised: #2E2136;
    --plum-deep: #150F19;
    --ember: #C8451F;
    --ember-hover: #A6371A;
    --ember-tint: #FBEDE7;
    --ember-light: #E0603A;
    --ember-check: #F0865F;
    --amber: #EDA23C;
    --amber-ink: #3A2405;
    --paper: #FFFCF7;
    --inset: #FAF6EF;
    --sand: #F2EEE7;
    --body-ink: #57503F;
    --muted: #8A8175;
    --line: rgba(27, 20, 32, .15);
    --line-soft: rgba(27, 20, 32, .1);
    --line-dark: rgba(255, 252, 247, .12);
    --sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, monospace;
    --gutter: 20px;
    --card-shadow: 0 18px 40px rgba(12, 6, 16, .4);
    --ember-tile: linear-gradient(135deg, #E0603A 0 50%, #C8451F 50% 100%);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { background: var(--sand); scroll-behavior: smooth; }
body { max-width: 480px; margin: 0 auto; background: var(--paper); color: var(--plum); font-family: var(--sans); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }

.jb-sr { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.jb-skip { position: fixed; z-index: 20; top: 8px; left: 8px; transform: translateY(-150%); border-radius: 8px; background: var(--paper); padding: 8px 14px; font-weight: 700; text-decoration: none; }
.jb-skip:focus { transform: translateY(0); }
.jb-mono { font-family: var(--mono); }

@keyframes jbin { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Buttons */
.jb-btn { display: inline-flex; height: 56px; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 12px; background: var(--ember); color: #fff; padding: 0 18px; font-family: var(--sans); font-size: 16px; font-weight: 700; line-height: 1; text-decoration: none; cursor: pointer; transition: background-color .18s ease; }
.jb-btn:hover { background: var(--ember-hover); }
.jb-btn-block { display: flex; width: 100%; }
.jb-btn-sm { height: 44px; border-radius: 10px; padding: 0 16px; font-size: 13px; }
.jb-arrow { font-weight: 500; }

/* A. Header */
.jb-header { position: sticky; z-index: 5; top: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; background: var(--plum); padding: calc(20px + env(safe-area-inset-top, 36px)) var(--gutter) 12px; }
.jb-brand { display: flex; align-items: center; gap: 3px; text-decoration: none; }
.jb-mark { display: block; width: 32px; height: 33px; flex: none; object-fit: contain; }
.jb-mark-sm { width: 24px; height: 25px; }
.jb-wordmark { font-size: 16px; line-height: 1; }
.jb-wordmark span { color: rgba(255, 252, 247, .6); font-weight: 500; }
.jb-wordmark strong { color: var(--paper); font-weight: 800; }
.jb-header-actions { display: flex; flex: none; align-items: center; margin-left: 12px; gap: 12px; }
.jb-hamburger { display: flex; width: 44px; height: 44px; flex-direction: column; align-items: flex-end; justify-content: center; gap: 3.5px; border: 0; background: none; padding: 0; cursor: pointer; }
.jb-hamburger i { height: 1.5px; background: rgba(255, 252, 247, .8); }
.jb-hamburger i:nth-child(2) { width: 20px; }
.jb-hamburger i:nth-child(3) { width: 20px; }
.jb-hamburger i:nth-child(4) { width: 13px; }
.jb-menu { display: flex; order: 3; flex-basis: 100%; flex-direction: column; margin: 12px calc(var(--gutter) * -1) -12px; background: var(--plum-raised); padding: 8px var(--gutter) 16px; }
.jb-menu a { padding: 10px 0; color: rgba(255, 252, 247, .78); font-size: 14px; font-weight: 500; text-decoration: none; }

/* B. Urgency banner */
.jb-urgency { background: var(--amber); padding: 9px var(--gutter); color: var(--amber-ink); font-size: 12px; font-weight: 700; line-height: 1.35; text-align: center; }

/* C. Hero */
.jb-hero { background: var(--plum); padding: 24px var(--gutter) 30px; }
.jb-hero-slim { padding-bottom: 40px; }
.jb-hero-eyebrow { color: var(--ember-check); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.jb-hero-title { color: var(--paper); font-size: 40px; font-weight: 800; letter-spacing: -.042em; line-height: 1; text-wrap: balance; }
.jb-hl { border-radius: 4px; background: var(--ember); padding: 0 7px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.jb-hero-sub { margin-top: 16px; color: rgba(255, 252, 247, .72); font-size: 15.5px; font-weight: 400; line-height: 1.5; text-wrap: pretty; }
.jb-hero-slim .jb-btn { margin-top: 24px; }

/* D. Amount card */
.jb-card { margin-top: 22px; border-radius: 18px; background: var(--paper); padding: 20px 18px 18px; box-shadow: var(--card-shadow); }
.jb-label { color: var(--muted); font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .13em; line-height: 1; text-transform: uppercase; }
.jb-figure { margin-top: 8px; color: var(--plum); font-size: 42px; font-weight: 800; letter-spacing: -.04em; line-height: 1.05; }
.jb-chips { display: grid; margin-top: 14px; gap: 8px; grid-template-columns: 1fr 1fr; }
.jb-chip { position: relative; display: block; }
.jb-chip input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.jb-chip span { display: flex; height: 52px; align-items: center; justify-content: center; border: 1.5px solid var(--line); border-radius: 11px; background: var(--paper); color: var(--plum); font-size: 15px; font-weight: 700; cursor: pointer; transition: border-color .15s ease, background-color .15s ease, color .15s ease; }
.jb-chip input:checked + span { border-color: var(--ember); background: var(--ember-tint); color: var(--ember); }
.jb-chip input:focus-visible + span { outline: 2px solid var(--ember); outline-offset: 2px; }
.jb-toggle { display: flex; width: 100%; height: 44px; align-items: center; justify-content: center; margin-top: 8px; border: 1.5px solid var(--line); border-radius: 11px; background: none; color: var(--body-ink); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: border-color .15s ease, color .15s ease; }
.jb-toggle-on { display: none; }
.jb-toggle-input:checked ~ .jb-toggle { border-color: var(--ember); color: var(--ember); }
.jb-toggle-input:checked ~ .jb-toggle .jb-toggle-off { display: none; }
.jb-toggle-input:checked ~ .jb-toggle .jb-toggle-on { display: inline; }
.jb-toggle-input:focus-visible ~ .jb-toggle { outline: 2px solid var(--ember); outline-offset: 2px; }
.jb-custom { display: none; height: 52px; align-items: center; gap: 8px; margin-top: 8px; border: 1.5px solid var(--ember); border-radius: 11px; padding: 0 14px; }
.jb-toggle-input:checked ~ .jb-custom { display: flex; animation: jbin .2s ease; }
.jb-custom-prefix { color: var(--muted); font-size: 17px; font-weight: 700; }
.jb-custom input { width: 100%; min-width: 0; border: 0; background: none; padding: 0; color: var(--plum); font-size: 17px; font-weight: 700; outline: none; }
.jb-custom input::placeholder { color: rgba(138, 129, 117, .7); }
.jb-custom-hint { flex: none; color: var(--muted); font-family: var(--mono); font-size: 11px; font-weight: 500; }
.jb-select { width: 100%; height: 50px; margin-top: 8px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%238A8175' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center/12px 8px; padding: 0 40px 0 14px; font-size: 15px; font-weight: 600; -webkit-appearance: none; appearance: none; }
.jb-card .jb-btn-block { margin-top: 14px; }
.jb-proof { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; color: var(--body-ink); font-size: 12px; font-weight: 600; }
.jb-proof-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); margin-right: -8px; }
.jb-proof-lock { width: 11px; height: 11px; border: 2px solid var(--body-ink); margin-right: -8px; margin-left: 6px; }

/* E. Stat strip */
.jb-stats { display: grid; background: var(--plum-raised); padding: 18px 12px; grid-template-columns: repeat(3, 1fr); text-align: center; }
.jb-stats div:nth-child(2) { border-right: 1px solid rgba(255, 252, 247, .14); border-left: 1px solid rgba(255, 252, 247, .14); }
.jb-stats strong { display: block; color: var(--paper); font-size: 20px; font-weight: 800; line-height: 1.2; }
.jb-stats span { display: block; margin-top: 4px; color: rgba(255, 252, 247, .5); font-family: var(--mono); font-size: 10.5px; font-weight: 500; }

/* Section headings */
.jb-steps h2, .jb-cases h2, .jb-states h2, .jb-faq h2 { font-size: 26px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; text-wrap: balance; }

/* F. How it works */
.jb-steps { padding: 34px var(--gutter) 30px; }
.jb-step { display: flex; gap: 12px; border-top: 1px solid var(--line-soft); padding: 18px 0; }
.jb-steps h2 + .jb-step { margin-top: 20px; }
.jb-step-rail { display: flex; width: 56px; flex: none; flex-direction: column; align-items: flex-start; }
.jb-step-rail span { color: var(--ember); font-family: var(--mono); font-size: 10.5px; font-weight: 500; }
.jb-step-rail i { width: 1px; flex: 1; margin-top: 8px; margin-left: 1px; background: rgba(27, 20, 32, .12); }
.jb-step-body h3 { font-size: 16.5px; font-weight: 700; }
.jb-step-body p { margin-top: 4px; color: var(--body-ink); font-size: 14px; font-weight: 400; line-height: 1.55; text-wrap: pretty; }

/* G. Use cases */
.jb-cases { padding-bottom: 32px; }
.jb-cases h2 { padding: 0 var(--gutter); }
.jb-case-row { display: flex; margin-top: 16px; gap: 12px; padding: 0 var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.jb-case-row::-webkit-scrollbar { display: none; }
.jb-case { width: 236px; flex: none; border: 1px solid rgba(27, 20, 32, .12); border-radius: 16px; background: var(--paper); padding: 16px; scroll-snap-align: start; }
.jb-slot { display: block; width: 100%; height: 120px; border-radius: 11px; background: linear-gradient(135deg, var(--sand), #E6DFD3); object-fit: cover; }
.jb-case picture { display: block; }
.jb-band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jb-case h3 { margin-top: 12px; font-size: 16px; font-weight: 700; }
.jb-case p { margin-top: 6px; color: var(--body-ink); font-size: 13.5px; font-weight: 400; line-height: 1.5; text-wrap: pretty; }
.jb-case-range { margin-top: 10px !important; color: var(--ember) !important; font-family: var(--mono); font-size: 12.5px !important; font-weight: 600; }

/* H. Photo band */
.jb-band { position: relative; display: flex; min-height: 230px; align-items: flex-end; background: linear-gradient(160deg, #3A2C42, #1B1420 70%); }
.jb-band::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(21, 15, 25, .92), rgba(21, 15, 25, 0)); content: ""; pointer-events: none; }
.jb-band p { position: relative; z-index: 1; width: 100%; padding: var(--gutter); color: var(--paper); font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; text-wrap: balance; }

/* I. Qualify card */
.jb-qualify { margin: 32px var(--gutter); border-radius: 20px; background: var(--plum); padding: 24px var(--gutter); }
.jb-qualify h2 { color: var(--paper); font-size: 23px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.jb-qualify ul { display: flex; flex-direction: column; margin: 16px 0 0; gap: 11px; padding: 0; list-style: none; }
.jb-qualify li { display: flex; align-items: center; gap: 10px; color: rgba(255, 252, 247, .88); font-size: 14.5px; font-weight: 500; }
.jb-check { display: inline-flex; width: 20px; height: 20px; flex: none; align-items: center; justify-content: center; border-radius: 50%; background: rgba(200, 69, 31, .28); color: var(--ember-check); font-size: 11px; font-weight: 700; }
.jb-qualify-note { margin-top: 16px; color: rgba(255, 252, 247, .4); font-size: 11.5px; font-weight: 400; line-height: 1.5; text-wrap: pretty; }

/* J. States */
.jb-states { padding: 0 var(--gutter) 32px; }
.jb-states-intro { margin-top: 6px; color: var(--body-ink); font-size: 14px; line-height: 1.5; text-wrap: pretty; }
.jb-state-chips { display: flex; flex-wrap: wrap; margin-top: 16px; gap: 7px; }
.jb-state-chip { display: inline-flex; width: 46px; height: 38px; align-items: center; justify-content: center; border: 1.5px solid var(--line); border-radius: 9px; background: var(--paper); color: var(--plum); font-family: var(--mono); font-size: 12.5px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background-color .15s ease, border-color .15s ease, color .15s ease; }
.jb-state-chip.is-selected { border-color: var(--plum); background: var(--plum); color: var(--paper); }
.jb-state-more { display: inline-flex; height: 38px; align-items: center; border: 1.5px dashed rgba(27, 20, 32, .24); border-radius: 9px; padding: 0 12px; color: var(--body-ink); font-family: var(--mono); font-size: 12.5px; font-weight: 600; text-decoration: none; cursor: pointer; }
.jb-state-panel { margin-top: 14px; border: 1px solid rgba(27, 20, 32, .12); border-radius: 13px; background: var(--inset); padding: 15px; }
.jb-state-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.jb-state-head span:first-child { font-size: 15.5px; font-weight: 700; }
.jb-state-head .jb-mono { color: var(--muted); font-size: 11px; font-weight: 500; }
.jb-state-stats { display: flex; margin-top: 12px; gap: 18px; }
.jb-state-stats strong { display: block; font-size: 15px; font-weight: 700; white-space: nowrap; }
.jb-state-stats span { display: block; margin-top: 4px; color: var(--muted); font-family: var(--mono); font-size: 10.5px; font-weight: 500; }
.jb-states-note { margin-top: 12px; color: var(--muted); font-size: 11.5px; line-height: 1.55; text-wrap: pretty; }

/* K. FAQ */
.jb-faq { padding: 0 var(--gutter) 32px; }
.jb-faq h2 + .jb-faq-item { margin-top: 20px; }
.jb-faq-item { border-top: 1px solid var(--line-soft); }
.jb-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 0; font-size: 15.5px; font-weight: 700; list-style: none; cursor: pointer; }
.jb-faq-item summary::-webkit-details-marker { display: none; }
.jb-faq-marker { flex: none; color: var(--ember); font-family: var(--mono); font-size: 17px; font-weight: 500; }
.jb-faq-marker::before { content: "+"; }
.jb-faq-item[open] .jb-faq-marker::before { content: "\2013"; }
.jb-faq-item p { padding-bottom: 18px; color: var(--body-ink); font-size: 14px; font-weight: 400; line-height: 1.6; text-wrap: pretty; animation: jbin .22s ease; }

/* L. Closing CTA */
.jb-close { background: var(--plum-raised); padding: 32px var(--gutter); }
.jb-close h2 { color: var(--paper); font-size: 28px; font-weight: 800; letter-spacing: -.035em; line-height: 1.08; text-wrap: balance; }
.jb-close > p { margin-top: 12px; color: rgba(255, 252, 247, .65); font-size: 14.5px; line-height: 1.5; text-wrap: pretty; }
.jb-close .jb-btn { margin-top: 20px; }
.jb-close-proof { margin-top: 12px; color: rgba(255, 252, 247, .55); font-size: 12px; font-weight: 600; text-align: center; }

/* M. Footer */
.jb-footer { background: var(--plum-deep); padding: 28px var(--gutter) calc(44px + env(safe-area-inset-bottom, 0px)); }
.jb-fnav { display: grid; gap: 12px 16px; grid-template-columns: 1fr 1fr; }
.jb-fnav a, .jb-fnav span { color: rgba(255, 252, 247, .62); font-size: 13px; font-weight: 500; text-decoration: none; }
.jb-fnav span { color: rgba(255, 252, 247, .38); cursor: default; }
.jb-footer hr { height: 1px; border: 0; margin: 24px 0; background: var(--line-dark); }
.jb-legal { color: rgba(255, 252, 247, .42); font-size: 11px; font-weight: 400; line-height: 1.65; text-wrap: pretty; }
.jb-legal + .jb-legal { margin-top: 12px; color: rgba(255, 252, 247, .34); font-family: var(--mono); }
.jb-signoff { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: rgba(255, 252, 247, .32); font-family: var(--mono); font-size: 11px; font-weight: 500; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Tablet — one column, uncaged, content centred at 720px
   ============================================================ */
@media (min-width: 720px) {
    :root { --gutter: 32px; --page: 720px; --pad-x: max(32px, calc((100% - var(--page)) / 2)); }
    html { background: var(--paper); }
    body { max-width: none; font-size: 16px; }

    .jb-header { padding: 16px var(--pad-x); }
    .jb-menu { margin: 12px calc(var(--pad-x) * -1) -16px; padding: 8px var(--pad-x) 16px; }
    .jb-urgency { padding: 12px var(--pad-x); font-size: 13px; }
    .jb-hero { padding: 44px var(--pad-x) 52px; }
    .jb-hero-title { font-size: 52px; }
    .jb-hero-sub { max-width: 560px; font-size: 17px; }
    .jb-card { max-width: 440px; }
    .jb-stats { padding: 24px var(--pad-x); }
    .jb-stats strong { font-size: 24px; }
    .jb-steps { padding: 56px var(--pad-x) 48px; }
    .jb-cases { padding-bottom: 56px; }
    .jb-cases h2, .jb-states, .jb-faq { padding-inline: var(--pad-x); }
    .jb-case-row { padding-inline: var(--pad-x); }
    .jb-band { min-height: 300px; }
    .jb-band p { max-width: calc(560px + var(--pad-x) * 2); padding: 32px var(--pad-x); font-size: 26px; }
    .jb-qualify { max-width: var(--page); margin: 48px auto; padding: 32px 36px; }
    .jb-close { padding: 56px var(--pad-x); }
    .jb-footer { padding: 44px var(--pad-x) 56px; }
    .jb-steps h2, .jb-cases h2, .jb-states h2, .jb-faq h2 { font-size: 32px; }
    .jb-hero-slim { max-width: 640px; margin-inline: auto; }
}

/* ============================================================
   Desktop — multi-column layout
   ============================================================ */
@media (min-width: 1000px) {
    :root { --gutter: 40px; --page: 1120px; --pad-x: max(40px, calc((100% - var(--page)) / 2)); }

    /* Header: real nav, no hamburger */
    .jb-header { flex-wrap: nowrap; gap: 40px; }
    .jb-menu, .jb-menu[hidden] { display: flex !important; order: 2; flex: 1; flex-basis: auto; flex-direction: row; justify-content: center; gap: 30px; margin: 0; background: none; padding: 0; }
    .jb-menu a { padding: 0; font-size: 14px; white-space: nowrap; transition: color .15s ease; }
    .jb-menu a:hover { color: var(--paper); }
    .jb-brand { order: 1; }
    .jb-header-actions { order: 3; margin-left: 0; }
    .jb-hamburger { display: none; }

    /* Hero: copy left, amount card right */
    .jb-hero:not(.jb-hero-slim) { display: grid; align-items: start; padding: 76px var(--pad-x) 76px; column-gap: 64px; grid-template-columns: minmax(0, 1fr) 400px; grid-template-rows: auto auto 1fr; }
    .jb-hero:not(.jb-hero-slim) .jb-hero-title { font-size: clamp(52px, 4.4vw, 64px); grid-column: 1; grid-row: 1; }
    .jb-hero:not(.jb-hero-slim) .jb-hero-sub { max-width: 520px; margin-top: 20px; font-size: 18px; grid-column: 1; grid-row: 2; }
    .jb-hero:not(.jb-hero-slim) .jb-card { max-width: none; margin-top: 0; grid-column: 2; grid-row: 1 / span 3; }
    .jb-hero-slim { padding-block: 88px 96px; }

    /* Stat strip */
    .jb-stats { padding: 30px var(--pad-x); }
    .jb-stats strong { font-size: 28px; }
    .jb-stats span { margin-top: 6px; font-size: 11.5px; }

    .jb-steps h2, .jb-cases h2, .jb-states h2, .jb-faq h2 { font-size: 38px; }

    /* How it works: three tracks, horizontal connector */
    .jb-steps { display: grid; padding: 88px var(--pad-x) 72px; column-gap: 32px; grid-template-columns: repeat(3, 1fr); row-gap: 0; }
    .jb-steps h2 { margin-bottom: 28px; grid-column: 1 / -1; }
    .jb-step, .jb-steps h2 + .jb-step { display: block; margin-top: 0; padding: 20px 0 0; }
    .jb-step-rail { display: flex; width: auto; flex-direction: row; align-items: center; gap: 10px; }
    .jb-step-rail i { width: auto; height: 1px; flex: 1; margin: 0; }
    .jb-step-body { margin-top: 14px; }
    .jb-step-body h3 { font-size: 19px; }
    .jb-step-body p { font-size: 15px; }

    /* Use cases: 3-up grid, no scroller */
    .jb-cases { padding-bottom: 80px; }
    .jb-case-row { display: grid; overflow: visible; margin-top: 28px; gap: 24px; grid-template-columns: repeat(3, 1fr); }
    .jb-case { width: auto; padding: 20px; }
    .jb-slot { height: 190px; }
    .jb-case h3 { font-size: 18px; }
    .jb-case p { font-size: 14.5px; }

    /* Photo band */
    .jb-band { min-height: 400px; }
    .jb-band p { max-width: calc(720px + var(--pad-x) * 2); padding: 48px var(--pad-x); font-size: 34px; }

    /* Qualify: heading + note left, checklist right */
    .jb-qualify { display: grid; margin: 72px auto; padding: 48px 52px; column-gap: 64px; grid-template-columns: 1fr 1.1fr; grid-template-rows: auto 1fr; }
    .jb-qualify h2 { font-size: 34px; grid-column: 1; grid-row: 1; }
    .jb-qualify ul { margin-top: 0; gap: 16px; grid-column: 2; grid-row: 1 / span 2; }
    .jb-qualify li { font-size: 16px; }
    .jb-qualify-note { align-self: end; margin-top: 24px; font-size: 12px; grid-column: 1; grid-row: 2; }

    /* States: chips left, detail panel right */
    .jb-states { display: grid; padding-bottom: 80px; column-gap: 56px; grid-template-areas: "head head" "intro intro" "chips panel" "note panel"; grid-template-columns: minmax(0, 1fr) 380px; }
    .jb-states h2 { grid-area: head; }
    .jb-states-intro { max-width: 620px; margin-top: 10px; font-size: 16px; grid-area: intro; }
    .jb-state-chips { align-content: start; grid-area: chips; }
    .jb-state-chip, .jb-state-more { transition: transform .12s ease; }
    .jb-state-chip:hover { border-color: var(--plum); }
    .jb-state-panel { align-self: start; margin-top: 16px; padding: 20px; grid-area: panel; }
    .jb-state-stats { gap: 20px; }
    .jb-states-note { grid-area: note; }
    .jb-states script { display: none; }

    /* FAQ: sticky heading left, accordion right */
    .jb-faq { display: grid; padding-bottom: 88px; column-gap: 72px; grid-template-columns: 320px minmax(0, 1fr); }
    .jb-faq h2 { position: sticky; top: 96px; align-self: start; grid-column: 1; grid-row: 1; }
    .jb-faq-item, .jb-faq h2 + .jb-faq-item { margin-top: 0; grid-column: 2; }
    .jb-faq-item summary { padding: 20px 0; font-size: 17px; }
    .jb-faq-item p { max-width: 680px; font-size: 15px; }

    /* Closing CTA */
    .jb-close { padding: 88px var(--pad-x); text-align: center; }
    .jb-close h2 { max-width: 760px; margin-inline: auto; font-size: 44px; }
    .jb-close > p { max-width: 560px; margin-inline: auto; font-size: 17px; }
    .jb-close .jb-btn { max-width: 340px; margin-inline: auto; }

    /* Footer */
    .jb-footer { padding: 56px var(--pad-x) 64px; }
    .jb-fnav { max-width: 900px; gap: 14px 24px; grid-template-columns: repeat(4, 1fr); }
    .jb-fnav a { transition: color .15s ease; }
    .jb-fnav a:hover { color: var(--paper); }
    .jb-legal { max-width: 900px; }
}
/* Content pages */
.jb-content-hero { background: var(--plum); color: var(--paper); padding: 28px var(--gutter) 36px; }
.jb-breadcrumb { font-family: var(--mono); font-size: 11px; margin-bottom: 22px; color: #d4c8d9; }
.jb-content-hero h1 { max-width: 760px; font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.12; letter-spacing: -.035em; text-wrap: balance; }
.jb-content-hero > p { max-width: 700px; margin-top: 18px; line-height: 1.65; color: #dfd5e3; }
.jb-content-hero > .jb-btn { margin-top: 24px; display: inline-flex; }
.jb-content-hero > .jb-content-proof { font-size: 12px; margin-top: 10px; }
.jb-reading { padding: 32px var(--gutter) 44px; line-height: 1.75; color: var(--body-ink); }
.jb-reading section + section { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.jb-reading h2 { color: var(--plum); font-size: 25px; line-height: 1.25; letter-spacing: -.025em; margin-bottom: 16px; text-wrap: balance; }
.jb-reading h3 { color: var(--plum); font-size: 18px; line-height: 1.4; margin-bottom: 10px; }
.jb-reading p + p, .jb-reading ul + p { margin-top: 16px; }
.jb-reading p + h3 { margin-top: 24px; }
.jb-reading a { text-decoration-thickness: 1px; text-underline-offset: 3px; color: var(--ember-hover); }
.jb-reading ul { padding-left: 22px; }
.jb-reading li + li { margin-top: 8px; }
.jb-table-wrap { overflow-x: auto; margin: 24px 0; }
.jb-reading table { border-collapse: collapse; width: 100%; text-align: left; font-size: 14px; }
.jb-reading caption { text-align: left; font-weight: 700; margin-bottom: 12px; color: var(--plum); }
.jb-reading th, .jb-reading td { padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: top; min-width: 140px; }
.jb-reading thead { background: var(--inset); color: var(--plum); }
.jb-example { padding: 22px; background: var(--inset); border-left: 3px solid var(--ember); border-radius: 0 12px 12px 0; margin: 22px 0; }
.jb-reading .jb-state-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; margin: 24px 0; }
.jb-state-list li { display: flex; gap: 8px; align-items: baseline; font-size: 13px; margin: 0 !important; }
.jb-state-list span { font-family: var(--mono); color: var(--ember-hover); font-size: 11px; }
.jb-review-note { font-size: 12px; }
.jb-support-form { margin: 24px 0; }
.jb-support-form fieldset { border: 1px solid var(--line); border-radius: 16px; padding: 22px; min-width: 0; }
.jb-support-form legend { color: var(--plum); font-weight: 700; padding: 0 8px; }
.jb-support-form label { display: block; margin-bottom: 8px; font-weight: 600; }
.jb-support-form input:not([type=hidden]), .jb-support-form select, .jb-support-form textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); margin-bottom: 20px; font: inherit; }
.jb-support-form textarea { resize: vertical; min-height: 160px; }
.jb-support-form p { font-size: 13px; margin-bottom: 20px; }
.jb-support-form button:disabled { background: #756b77; cursor: not-allowed; }
.jb-home-about { background: var(--inset); margin-bottom: 34px; }
.jb-footer .jb-legal { color: rgba(255, 252, 247, .7); }
@media (min-width: 720px) {
    .jb-content-hero { padding: 40px var(--pad-x) 48px; }
    .jb-reading { padding: 44px max(32px, calc((100% - 820px) / 2)) 56px; }
    .jb-reading .jb-state-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Keep highlighted text inside its own line box at every viewport width. */
.jb-hero-brand, .jb-hero-tagline { display: block; }
.jb-hero-brand { line-height: 1.15; }
.jb-hero-tagline { margin-top: .18em; line-height: 1.22; }
.jb-hero-tagline .jb-hl { display: inline-block; line-height: 1.12; padding: .02em 7px .06em; vertical-align: baseline; }

.jb-state-stats { flex-wrap: wrap; }

.jb-wordmark small { display: block; color: var(--paper); font-size: 10px; font-weight: 500; line-height: 1.5; margin-top: 3px; }

.jb-application-panel { max-width: 900px; margin: 0 auto; padding: 24px 20px 40px; }
.jb-application-panel > p { margin-bottom: 24px; line-height: 1.6; }
.jb-gate { position: relative; display: grid; gap: 18px; max-width: 460px; }
.jb-gate > input[type="text"] { width: 100%; padding: 14px; border: 1px solid #999; border-radius: 8px; background: white; color: #1b1420; font: inherit; }
.jb-gate-confirm { display: flex; align-items: center; gap: 10px; }
.jb-gate-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
#_lg_form_ { min-height: 500px; background: #fff; color: #1b1420; border-radius: 12px; overflow: hidden; }
#_lg_form_ iframe { width: 100%; border: 0; }
