/** Shopify CDN: Minification failed

Line 644:0 Unexpected bad string token
Line 644:1 Unterminated string token
Line 686:9 Unterminated string token

**/
/* section-owner-support.css
   Lifted out of sections/section-owner-support.liquid 2026-09-11. The section hit
   Shopify's hard 256 KB per-template limit (it was 267,487 B on disk, 5,343 B over)
   and the registration-form fix could not deploy. Both <style> blocks carried ZERO
   Liquid, so they move byte-for-byte with no behaviour change; the markup, the
   script and every class name are untouched.
   Block one was liquid lines 635-948, block two lines 2764-2785.
   IF YOU ADD CSS FOR THIS SECTION, ADD IT HERE, not back inline: the section file
   still sits about 240 KB against a 256 KB ceiling and grew 8x in three months. */

  /* Dealer stock grid (sortable/filterable) — shown only for dealer logins */
  .ou__ds{margin-bottom:10px}
  /* THE DEALER TABLES BREAK OUT OF THE PAGE COLUMN (2026-07-29, David: "the horizontal
     scroll is a little confusing").
     Root cause: .ou is an 820px reading column, right for a customer's unit cards and far
     too narrow for a nine-column stock table, so every dealer got a sideways scrollbar and
     a sticky action column shadowing the Buyer column -- which reads as broken, not as
     scrollable. Measured before the fix: the table wanted 996px inside 819px. A dealer's
     stock list is a working table, not prose, so it gets real width.
     Centered on the VIEWPORT rather than the column, and only above 900px so phones keep
     the single-column layout they already had.
     Done with margins, NOT left/transform: a transform on an ancestor changes the
     containing block and can break the sticky header row and sticky action column, which
     are the two things holding this table together on a narrow screen. */
  @media (min-width:900px){
    #ouStaged,#ouDealerStock,#ouSoldUnits{
      width:min(1240px,calc(100vw - 40px));
      margin-left:calc(50% - min(620px,calc(50vw - 20px)))}
  }
  .ou__ds-count{color:#e7b95f;letter-spacing:.5px;font-size:.8rem;margin-left:6px}
  .ou__ds-controls{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 12px}
  .ou__ds-controls input[type=search],.ou__ds-controls select{
    background:#141414;border:1px solid rgba(231,185,95,.3);border-radius:7px;color:#F5F5F5;
    padding:9px 12px;font-family:inherit;font-size:.9rem}
  .ou__ds-controls input[type=search]{flex:1 1 240px;min-width:200px;max-width:360px}
  .ou__ds-wrap{overflow-x:auto;border:1px solid rgba(231,185,95,.2);border-radius:10px;background:#181818}
  .ou__ds-table{width:100%;border-collapse:separate;border-spacing:0;font-size:.88rem}
  .ou__ds-table thead th{position:sticky;top:0;background:#1d1a13;text-align:left;white-space:nowrap;
    color:#e7b95f;font-weight:600;padding:10px 11px;cursor:pointer;-webkit-user-select:none;user-select:none;
    border-bottom:1px solid rgba(231,185,95,.25)}
  .ou__ds-caret{color:rgba(245,245,245,.35);margin-left:4px;font-size:.78em}
  .ou__ds-table thead th.is-sorted .ou__ds-caret{color:#e7b95f}
  .ou__ds-table tbody td{padding:9px 11px;border-bottom:1px solid rgba(255,255,255,.06);color:rgba(245,245,245,.9);vertical-align:middle}
  .ou__ds-table tbody tr:last-child td{border-bottom:0}
  .ou__ds-table tbody tr:hover{background:rgba(231,185,95,.05)}
  .ou__ds-badge{font-size:.68rem;font-weight:600;padding:3px 10px;border-radius:999px;text-transform:uppercase;letter-spacing:.5px;white-space:nowrap}
  .ou__ds-badge--stock{background:#15241a;color:#9cc79c;border:1px solid #5a8a5a}
  /* Listen Here cell: state reads first, the actions sit under it so a wide table
     does not push them off screen on a laptop. */
  .ou__lh-on{color:#e7b95f;font-weight:600}
  .ou__lh-acts{display:flex;flex-wrap:wrap;gap:5px;margin-top:5px}
  /* The one-year clock rides the Received date, because that date is what it counts
     from. Quiet until it matters, then it is the loudest thing in the row. */
  .ou__ds-clock{display:block;font-size:.7rem;color:rgba(245,245,245,.45);margin-top:2px;cursor:help}
  .ou__ds-clock--soon{color:#e7b95f}
  .ou__ds-clock--past{color:#d99a9a}
  .ou__ds-badge--sold{background:#12181c;color:#8fc4e0;border:1px solid #3f6b82}
  .ou__ds-badge--other{background:#241f12;color:#e7b95f;border:1px solid rgba(231,185,95,.5)}
  .ou__ds-badge--used{background:#241f12;color:#e7b95f;border:1px solid rgba(231,185,95,.5);margin-left:6px}
  .ou__ds-reg{font-size:.66rem;color:#9cc79c;border:1px solid #5a8a5a;border-radius:999px;padding:2px 7px;margin-left:6px;white-space:nowrap}
  .ou__ds-dim{color:rgba(245,245,245,.4)}
  /* The row's one control. Reads as a field, not a button, because its label is a fact. */
  select.ou__ds-state{background:#111;color:#F5F5F5;border:1px solid rgba(231,185,95,.45);
    border-radius:8px;padding:7px 10px;font-family:inherit;font-size:.84rem;
    min-width:212px;max-width:100%;cursor:pointer}
  select.ou__ds-state:hover{border-color:rgba(231,185,95,.7)}
  select.ou__ds-state.is-set{border-color:#5a8a5a;background:#121a12}
  .ou__ds-empty{text-align:center;color:rgba(245,245,245,.55);padding:20px}
  .ou__ds-actcol{text-align:right}
  /* Listen Here is a STATE with its actions under it, not an action column, so it reads
     from the left like every other fact in the row. Right-aligning it parked "Not told us
     yet" away from the buttons it belongs to. */
  #ouDsTable th:nth-child(7),#ouDsTable td:nth-child(7){text-align:left}
  #ouDsTable td:nth-child(7) .ou__lh-acts{justify-content:flex-start}
  /* The action cell WRAPS instead of forcing the table wider. Two buttons side by side
     is ~330px of nowrap that every other column then has to give up. */
  .ou__ds-table td:last-child{text-align:right;white-space:normal}
  .ou__ds-sell{background:#e7b95f;color:#1C1C1C;border:0;border-radius:999px;padding:6px 14px;margin:2px 0 2px 4px;
    font-family:inherit;font-weight:600;font-size:.8rem;cursor:pointer}
  .ou__ds-sell:hover{background:#d4a94e}
  /* These tables are wider than the 820px page column and scroll sideways; overlay
     scrollbars give no hint, so the action column sticks to the right edge to keep
     Register / Edit visible at any scroll position. border-spacing:0 above (not
     collapse) because collapsed borders don't travel with sticky cells in Chromium. */
  #ouDsTable th:last-child,#ouDsTable td.ou__ds-actcol:last-child,
  #ouSoldUnits .ou__ds-table th:last-child,#ouSoldUnits .ou__ds-table td.ou__ds-actcol:last-child{
    position:sticky;right:0;z-index:1;background:#181818;box-shadow:-10px 0 10px -8px rgba(0,0,0,.55)}
  #ouDsTable thead th:last-child,#ouSoldUnits .ou__ds-table thead th:last-child{background:#1d1a13;z-index:2}
  #ouDsTable tbody tr:hover td.ou__ds-actcol:last-child,
  #ouSoldUnits .ou__ds-table tbody tr:hover td.ou__ds-actcol:last-child{background:#22201c}
  #ouDsTable tbody td:nth-child(6){max-width:220px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .ou__ds-pending{font-size:.74rem;color:#e7b95f;border:1px solid rgba(231,185,95,.5);border-radius:999px;padding:3px 9px}
  /* Sold, awaiting serial: staged picks + a Save bar that stays on screen, because nothing
     is submitted until it is pressed. */
  .ou__stg-prov{border:1px solid rgba(231,185,95,.22);border-radius:10px;background:#181818;
    padding:13px 15px;margin-bottom:14px;display:flex;flex-wrap:wrap;gap:8px 20px;align-items:center;font-size:.85rem}
  .ou__stg-prov b{color:#e7b95f;font-weight:600}
  .ou__stg-hash{font-family:ui-monospace,Consolas,monospace;font-size:.74rem;color:rgba(245,245,245,.45)}
  select.ou__stg-pick{background:#111;color:#F5F5F5;border:1px solid rgba(231,185,95,.35);border-radius:6px;
    padding:8px 10px;font-family:inherit;font-size:.86rem;min-width:230px;max-width:100%}
  select.ou__stg-pick.is-set{border-color:#5a8a5a;background:#121a12}
  select.ou__stg-pick.is-out{border-color:rgba(231,185,95,.6);background:#221d12}
  .ou__ds-table tbody tr.ou__stg-done{background:rgba(90,138,90,.10)}
  .ou__stg-bar{position:fixed;left:0;right:0;bottom:0;z-index:50;background:#1d1a13;
    border-top:2px solid #e7b95f;box-shadow:0 -8px 26px rgba(0,0,0,.5)}
  .ou__stg-bar-in{max-width:820px;margin:0 auto;padding:13px 20px;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
  .ou__stg-msg{font-size:.9rem}
  .ou__stg-msg b{color:#e7b95f}
  .ou__stg-unsaved{color:#e7b95f;font-weight:600}
  .ou__stg-save{background:#e7b95f;color:#1C1C1C;border:0;border-radius:999px;padding:12px 32px;
    font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);font-weight:600;font-size:1.05rem;
    letter-spacing:.5px;cursor:pointer}
  .ou__stg-save:hover{background:#f2c976}
  .ou__stg-save:disabled{background:#3a3a3a;color:rgba(245,245,245,.35);cursor:not-allowed}
  .ou__stg-clear{background:transparent;color:rgba(245,245,245,.6);border:1px solid rgba(245,245,245,.25);
    border-radius:999px;padding:9px 16px;font-family:inherit;font-size:.85rem;cursor:pointer}
  /* One candidate: a confirmation, not a selection. Sized to read as the action it is,
     with the escape hatch beside it rather than buried in a dropdown. */
  .ou__stg-confirm{background:#e7b95f;color:#1C1C1C;border:0;border-radius:999px;padding:9px 20px;
    font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);font-weight:600;font-size:.95rem;
    letter-spacing:.3px;cursor:pointer;white-space:nowrap}
  .ou__stg-confirm:hover{background:#f2c976}
  .ou__stg-confirm:disabled{background:#3a3a3a;color:rgba(245,245,245,.35);cursor:not-allowed}
  .ou__stg-other{background:transparent;color:rgba(245,245,245,.6);border:0;padding:9px 4px;margin-left:10px;
    font-family:inherit;font-size:.82rem;text-decoration:underline;cursor:pointer}
  .ou__stg-other:hover{color:#e7b95f}
  .ou__ds-back{position:fixed;inset:0;background:rgba(0,0,0,.62);z-index:6100;display:none}
  .ou__ds-modal{position:fixed;z-index:6101;display:none;top:50%;left:50%;transform:translate(-50%,-50%);
    width:min(540px,94vw);max-height:92vh;overflow:auto;background:#161616;color:#F5F5F5;border:1px solid rgba(231,185,95,.3);
    border-radius:12px;padding:22px 24px;box-shadow:0 14px 44px rgba(0,0,0,.55)}
  .ou__ds-modal h3{font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);color:#e7b95f;margin:0 0 4px;font-size:1.3rem}
  .ou__ds-lead{color:rgba(245,245,245,.65);font-size:.88rem;margin:0 0 14px}
  .ou__ds-tiers{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
  .ou__ds-tier{flex:1 1 150px;text-align:left;border:1px solid rgba(245,245,245,.18);border-radius:8px;
    padding:11px 12px;cursor:pointer;background:#181818;color:#F5F5F5;font-family:inherit}
  .ou__ds-tier:hover{border-color:rgba(231,185,95,.6)}
  .ou__ds-tier.is-on{border-color:#e7b95f;background:#221d12}
  .ou__ds-tier b{display:block;font-size:.88rem;margin-bottom:3px}
  .ou__ds-tier span{font-size:.74rem;color:rgba(245,245,245,.55);line-height:1.35}
  .ou__ds-fld{margin-bottom:11px}
  .ou__ds-fld label{display:block;font-size:.72rem;letter-spacing:.5px;text-transform:uppercase;color:rgba(245,245,245,.55);margin-bottom:5px}
  .ou__ds-fld input[type=text],.ou__ds-fld input[type=email],.ou__ds-fld input[type=date],.ou__ds-fld textarea{
    width:100%;background:#111;color:#F5F5F5;border:1px solid rgba(231,185,95,.3);border-radius:6px;padding:9px 11px;font-family:inherit;font-size:.9rem}
  .ou__ds-fld textarea{resize:vertical;min-height:56px}
  .ou__ds-fld textarea:focus,.ou__ds-fld input:focus{outline:2px solid #e7b95f;outline-offset:1px}
  .ou__ds-fld label.ou__tu-chk{display:flex;align-items:flex-start;gap:10px;font-weight:400;margin:0;
    text-transform:none;letter-spacing:normal;color:#F5F5F5;
    padding:7px 2px;border-bottom:1px solid #26292c;cursor:pointer;line-height:1.45;font-size:.9rem}
  .ou__ds-fld label.ou__tu-chk:last-of-type{border-bottom:0}
  .ou__tu-chk input{accent-color:#e7b95f;flex:none;width:16px;height:16px;margin:2px 0 0}
  .ou__tu-chk input:focus-visible{outline:2px solid #e7b95f;outline-offset:2px}
  .ou__tu-help{width:16px;height:16px;border-radius:50%;border:1px solid #e7b95f;background:transparent;
    color:#e7b95f;font-size:.68rem;line-height:1;cursor:pointer;padding:0;flex:none;
    display:inline-flex;align-items:center;justify-content:center;font-family:inherit;font-weight:700}
  .ou__tu-help:hover{background:#e7b95f;color:#1c1c1c}
  .ou__tu-tip{display:none;background:#221d12;border:1px solid rgba(231,185,95,.4);border-radius:6px;
    padding:9px 12px;font-size:.8rem;color:#e7c98a;margin:0 0 8px;line-height:1.45}
  .ou__tu-ph{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .ou__tu-ph span{display:block;font-size:.78rem;color:rgba(245,245,245,.75)}
  .ou__tu-ph input[type=file]{display:block;width:100%;margin-top:3px;color:rgba(245,245,245,.6);font-size:.72rem}
  .ou__tu-ph input[type=file]::file-selector-button{background:transparent;border:1px solid rgba(231,185,95,.5);
    color:#e7b95f;border-radius:999px;padding:4px 10px;margin-right:8px;font-family:inherit;font-size:.72rem;cursor:pointer}
  .ou__tu-ph input[type=file]::file-selector-button:hover{border-color:#e7b95f}
  .ou__ds-note{font-size:.8rem;color:#e7c98a;background:#221d12;border-left:3px solid #e7b95f;border-radius:0 6px 6px 0;padding:10px 13px;margin:6px 0 0;line-height:1.45}
  .ou__ds-foot{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:16px}
  .ou__ds-msg{font-size:.82rem;min-height:1.1rem}
  .ou-bleed{background:#1C1C1C;width:100vw;margin-left:calc(50% - 50vw);min-height:70vh}
  .ou{max-width:820px;margin:0 auto;padding:48px 20px 72px;color:#F5F5F5;
      font-family:var(--FONT-STACK-BODY,'Barlow',sans-serif)}
  .ou__header{text-align:center;margin-bottom:30px}
  .ou__title{font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);font-size:2.1rem;
             color:#e7b95f;margin:0 0 8px;letter-spacing:1px}
  .ou__subtitle{color:rgba(231,185,95,.65);margin:0 auto;font-size:1.02rem;max-width:560px;line-height:1.5}
  .ou__muted{color:rgba(245,245,245,.6)}
  .ou__link{color:#e7b95f}
  .ou__panel{background:#181818;border:1px solid rgba(231,185,95,.3);border-radius:8px;padding:24px}
  .ou__signin{text-align:center}.ou__signin p{margin:0 0 16px}
  .ou__sec-label{font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);font-size:.82rem;
                 letter-spacing:1.5px;text-transform:uppercase;color:rgba(245,245,245,.55);margin:30px 0 14px}

  .ou__card{display:flex;gap:18px;align-items:center;background:#181818;border:1px solid rgba(231,185,95,.25);
            border-radius:10px;padding:18px 20px;margin-bottom:14px;transition:border-color .15s}
  .ou__card:hover{border-color:#e7b95f}
  .ou__thumb{width:84px;height:64px;flex:0 0 auto;border-radius:6px;
             background:linear-gradient(135deg,#2a2a2a,#161616);border:1px solid #333;display:flex;
             align-items:center;justify-content:center;color:#666;font-size:.62rem;letter-spacing:1px;text-align:center}
  .ou__info{flex:1 1 auto;min-width:0}
  .ou__model{font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);font-size:1.35rem;color:#f5f5f5;margin:0;line-height:1.1}
  .ou__sub{font-size:.84rem;color:rgba(245,245,245,.5);margin:4px 0 0}
  .ou__src{font-size:.84rem;margin:2px 0 0;color:rgba(245,245,245,.65)}
  .ou__src b{color:#e7b95f;font-weight:600}
  .ou__warr{font-size:.92rem;margin:9px 0 0;display:flex;align-items:center;gap:8px;flex-wrap:wrap}
  .ou__warr-thru{color:rgba(245,245,245,.7)}.ou__warr-thru b{color:#f5f5f5}
  .ou__links{margin-top:8px;font-size:.82rem}
  .ou__links a{color:rgba(231,185,95,.85);text-decoration:none;border-bottom:1px dotted rgba(231,185,95,.4)}
  .ou__svc{margin-top:8px;font-size:.82rem}
  .ou__svc-h{font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:rgba(231,185,95,.65)}
  .ou__svc-row{margin:3px 0;color:rgba(245,245,245,.65)}
  .ou__svc-row b{color:#f5f5f5;font-weight:600}
  .ou__svc-row a{color:rgba(231,185,95,.85);text-decoration:none;border-bottom:1px dotted rgba(231,185,95,.4)}
  .ou__svc-form{margin:8px 0;padding:12px;border:1px solid rgba(231,185,95,.35);border-radius:8px;font-size:.84rem;color:rgba(245,245,245,.8)}
  .ou__svc-quote{font-style:italic;color:rgba(245,245,245,.75);margin:0 0 8px}
  .ou__svc-form label{display:inline-block;margin:0 14px 6px 0;color:rgba(245,245,245,.8);font-size:.84rem}
  .ou__svc-form input[type=radio]{margin-right:5px}
  .ou__svc-hint{font-size:.78rem;color:rgba(231,185,95,.75);margin:0 0 8px}
  .ou__svc-form textarea{width:100%;min-height:70px;background:#242424;color:#f5f5f5;border:1px solid rgba(245,245,245,.25);border-radius:6px;padding:8px;font-size:.84rem}
  .ou__docs-wrap{margin-top:9px}
  .ou__docs-toggle{font-size:.8rem;color:#e7b95f;background:none;border:none;padding:0;cursor:pointer;
                   font-family:inherit;opacity:.85}
  .ou__docs-toggle:hover{opacity:1;text-decoration:underline}
  .ou__docs{margin-top:7px;padding:8px 11px;border:1px solid rgba(231,185,95,.2);border-radius:7px;
            background:#0e0e0e;max-width:420px}
  .ou__doc{display:flex;align-items:center;gap:8px;padding:4px 0;font-size:.82rem;color:#e7b95f;
           text-decoration:none;border:none}
  .ou__doc:hover{text-decoration:underline}
  .ou__doc em{font-style:normal;margin-left:auto;font-size:.7rem;color:rgba(245,245,245,.35);letter-spacing:.04em}
  .ou__right{flex:0 0 auto;display:flex;flex-direction:column;align-items:flex-end;gap:8px}
  .ou__manage-link{font-size:.78rem;color:rgba(245,245,245,.45);cursor:pointer;background:none;border:none;
                   font-family:inherit;padding:0}
  .ou__manage-link:hover{color:#e7b95f}

  .ou__badge{font-size:.7rem;font-weight:600;padding:4px 11px;border-radius:999px;text-transform:uppercase;
             letter-spacing:.5px;white-space:nowrap}
  .ou__badge--good{background:#15241a;color:#9cc79c;border:1px solid #5a8a5a}
  .ou__badge--warn{background:#241f12;color:#e7b95f;border:1px solid #e7b95f}
  .ou__badge--bad{background:#2a1515;color:#e58a8a;border:1px solid #8a5a5a}
  .ou__owner{margin:6px 0 0}

  .ou__btn{display:inline-block;padding:10px 20px;border-radius:999px;font-size:.9rem;font-weight:600;cursor:pointer;
           text-decoration:none;font-family:inherit;border:2px solid #e7b95f;background:transparent;color:#e7b95f;
           transition:background .15s;white-space:nowrap;text-align:center}
  .ou__btn:hover{background:rgba(231,185,95,.12)}
  .ou__btn--primary{background:#e7b95f;color:#1C1C1C}.ou__btn--primary:hover{background:#d4a94e}
  .ou__btn--ghost{border-color:#666;color:#aaa}.ou__btn--ghost:hover{background:rgba(255,255,255,.05)}
  .ou__btn--sm{padding:8px 16px;font-size:.84rem}
  .ou__muted-card{opacity:.8}.ou__muted-card .ou__model{color:rgba(245,245,245,.82)}

  .ou__flow{border-radius:10px;padding:20px 22px;margin:2px 0 18px;display:none}
  .ou__flow.is-show{display:block}
  .ou__flow--help{background:#12181c;border:1px solid #20303a}
  .ou__flow--manage{background:#1a1614;border:1px solid #3a2f20}
  .ou__flow h4{margin:0 0 8px;font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);color:#e7b95f;font-size:1.12rem}
  .ou__flow p{margin:0 0 10px;color:rgba(245,245,245,.82);font-size:.95rem;line-height:1.55}
  .ou__chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}
  .ou__note{font-size:.85rem;color:rgba(245,245,245,.55);margin:10px 0 0;padding-top:10px;border-top:1px solid rgba(255,255,255,.08)}
  .ou__mblock{display:flex;gap:12px;align-items:flex-end;flex-wrap:wrap;padding:14px 0;border-top:1px solid rgba(255,255,255,.07)}
  .ou__mblock:first-of-type{border-top:none;padding-top:4px}
  .ou__mblock .ou__grow{flex:1 1 220px;display:flex;flex-direction:column;gap:6px}
  .ou__mblock label{font-size:.74rem;letter-spacing:.5px;text-transform:uppercase;color:rgba(245,245,245,.5)}
  .ou__mblock input,.ou__mblock select{background:#111;color:#F5F5F5;border:1px solid rgba(231,185,95,.3);
       border-radius:6px;padding:10px 12px;font-family:inherit;font-size:.94rem}
  .ou__mtitle{font-weight:600;color:#f5f5f5;font-size:.96rem;margin:0 0 2px}
  .ou__mdesc{font-size:.83rem;color:rgba(245,245,245,.55);margin:0}

  .ou__reg{background:#181818;border:1px dashed rgba(231,185,95,.4);border-radius:10px;padding:22px;margin-top:6px}
  .ou__reg h3{font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif);font-size:1.2rem;color:#e7b95f;margin:0 0 4px}
  .ou__lead{margin:0;color:rgba(245,245,245,.7);font-size:.95rem}
  .ou__reg--collapsed .ou__reg-body{display:none}
  .ou__reg-body{margin-top:18px}
  .ou__reg-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
  .ou__fld{display:flex;flex-direction:column;gap:6px}.ou__fld--full{grid-column:1 / -1}
  .ou__fld label{font-size:.78rem;letter-spacing:.5px;text-transform:uppercase;color:rgba(245,245,245,.55)}
  .ou__fld input,.ou__fld select{background:#111;color:#F5F5F5;border:1px solid rgba(231,185,95,.3);
       border-radius:6px;padding:11px 12px;font-family:inherit;font-size:.96rem}
  /* Searchable two-tier model picker (current alpha / divider / discontinued+vintage alpha) */
  .ou__combo{position:relative}
  .ou__combo-input{width:100%;box-sizing:border-box}
  .ou__combo-list{position:absolute;top:100%;left:0;right:0;z-index:60;max-height:264px;overflow-y:auto;
       margin:2px 0 0;padding:0;list-style:none;background:#111;border:1px solid rgba(231,185,95,.4);
       border-top:none;border-radius:0 0 6px 6px;display:none}
  .ou__combo-list.is-open{display:block}
  .ou__combo-list li{padding:9px 12px;cursor:pointer;color:#F5F5F5;font-size:.95rem;line-height:1.2}
  .ou__combo-list li.is-active,.ou__combo-list li:hover{background:rgba(231,185,95,.16)}
  .ou__combo-list li.is-disc{color:rgba(245,245,245,.72)}
  .ou__combo-list li.ou__combo-group{cursor:default;pointer-events:none;color:#e7b95f;font-size:.7rem;
       text-transform:uppercase;letter-spacing:.12em;text-align:center;padding:6px 12px;background:#0b0b0b;
       border-top:1px solid rgba(231,185,95,.25)}
  .ou__combo-list li.is-empty{cursor:default;pointer-events:none;color:rgba(245,245,245,.5);font-size:.9rem}
  .ou__combo-list li.is-empty a{pointer-events:auto;cursor:pointer}
  /* Inline variant for the modal: the list flows in-document (the modal scrolls)
     instead of absolutely positioned, so overflow:auto can't clip it. */
  .ou__combo--inline .ou__combo-list{position:static;border-top:1px solid rgba(231,185,95,.4);
       border-radius:6px;margin-top:5px;max-height:200px}
  /* Input instructions — closed by default, gold summary so it reads as an offer of help
     rather than a warning. Native <details>, so it still opens with JS broken. */
  .ou__help{margin:0 0 16px;border:1px solid rgba(231,185,95,.35);border-radius:8px;background:#141414}
  .ou__help>summary{cursor:pointer;list-style:none;padding:12px 14px;color:#e7b95f;font-weight:600;
       font-size:.95rem;font-family:var(--FONT-STACK-HEADING,'Archivo Narrow',sans-serif)}
  .ou__help>summary::-webkit-details-marker{display:none}
  .ou__help>summary::before{content:'\25B8';display:inline-block;margin-right:8px;transition:transform .15s}
  .ou__help[open]>summary::before{transform:rotate(90deg)}
  .ou__help-body{padding:0 14px 14px;border-top:1px solid rgba(231,185,95,.2)}
  .ou__help-body p{margin:12px 0 0;color:rgba(245,245,245,.82);font-size:.92rem;line-height:1.6}
  .ou__help-body b{color:#e7b95f}
  .ou__help-out{border-top:1px dashed rgba(231,185,95,.25);padding-top:12px}
  .ou__reg-actions{flex-direction:row;justify-content:flex-end;gap:10px;margin-top:4px}
  .ou__drop{grid-column:1 / -1;border:1px dashed rgba(231,185,95,.4);border-radius:8px;padding:22px;text-align:center;
            color:rgba(245,245,245,.55);font-size:.9rem;background:#141414}.ou__drop b{color:#e7b95f}
  .ou__wbnote{margin:0;padding:12px 14px;border-left:3px solid #e7b95f;background:#241f12;border-radius:0 6px 6px 0;
              color:#e7c98a;font-size:.88rem;line-height:1.5}
  /* "I sold this unit" — a label inside .ou__fld, so it has to undo the uppercase
     micro-label styling those get and read as a sentence. */
  .ou__seller-tick{display:flex;gap:10px;align-items:flex-start;cursor:pointer;padding:12px 14px;
                   border:1px solid rgba(231,185,95,.3);border-radius:8px;background:#141414;
                   color:rgba(245,245,245,.85);font-size:.92rem;line-height:1.45;
                   text-transform:none;letter-spacing:0}
  .ou__seller-tick input[type=checkbox]{width:auto;margin:3px 0 0;flex:0 0 auto;accent-color:#e7b95f}
  .ou__seller-tick .ou__sub{text-transform:none;letter-spacing:0}
  .ou__rev{flex-direction:column;gap:9px;padding:14px 16px;border-radius:8px;background:#141414;
           border:1px solid rgba(231,185,95,.25);font-size:.9rem;color:rgba(245,245,245,.82)}
  .ou__rev-step{display:flex;align-items:flex-start;gap:9px;line-height:1.45}
  .ou__rev-ic{width:16px;text-align:center;flex:0 0 auto}
  .ou__rev-spin{display:inline-block;width:12px;height:12px;border:2px solid rgba(231,185,95,.3);
                border-top-color:#e7b95f;border-radius:50%;animation:ouspin .7s linear infinite;vertical-align:middle}
  @keyframes ouspin{to{transform:rotate(360deg)}}
  .ou__rev--ok{border-color:#5a8a5a}.ou__rev--ok .ou__rev-ic{color:#9cc79c}
  .ou__rev--warn{border-color:#8a7a4a}
  .ou__rev-ok-note{color:#9cc79c}
  .ou__rev-warn-box{padding:10px 12px;border-left:3px solid #e7b95f;background:#241f12;border-radius:0 6px 6px 0;
                    color:#e7c98a;font-size:.86rem;line-height:1.5}
  .ou__rev-acts{display:flex;gap:10px;flex-wrap:wrap}
  .ou__escape{margin-top:28px;text-align:center;color:rgba(245,245,245,.5);font-size:.9rem}

/* ---- block two: was liquid lines 2764-2785 ---- */

'
      + '@page{size:letter;margin:0.4in}'
      + 'body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#1c1c1a;line-height:1.38;margin:0;font-size:12.5px}'
      + '.brand{display:flex;align-items:center;justify-content:space-between;border-bottom:3px solid #1c1c1a;padding-bottom:6px}'
      + '.brand img{height:40px}.fno{font-size:10px;letter-spacing:.12em;color:#6a6a66;text-transform:uppercase}'
      + '.tblock{margin-top:10px}.tt{font-size:24px;font-weight:650}.eb{font-size:11.5px;letter-spacing:.22em;text-transform:uppercase;color:#55554f;margin-left:10px}'
      + 'p.intro{text-align:justify;margin:8px 0 0}'
      + '.ml{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:#55554f;margin-top:10px}'
      + 'ul{margin:5px 0 0;padding-left:18px}li{margin-bottom:3px;text-align:justify}'
      + '.fld{display:flex;gap:8px;align-items:flex-end;margin-top:10px}.fld .lb{white-space:nowrap;color:#55554f}'
      + '.fld .ln{flex:1;border-bottom:1px solid #8f8d87;min-height:1.25em;padding:0 2px 1px}'
      + 'table{width:100%;border-collapse:collapse;margin-top:12px;font-size:12.5px}'
      + 'th,td{border:1px solid #b9b7b1;padding:4px 10px;text-align:left}'
      + 'th{font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;color:#55554f;background:#f4f3ef}'
      + '.of{background:#f4f3ef;min-width:100px}.oftag{display:block;font-size:8px;color:#9a988f}'
      + '.decl{margin-top:12px;font-size:14px;font-weight:650}'
      + '.close{margin-top:10px}.team{font-style:italic}'
      + '.obox{border:1.5px solid #1c1c1a;margin-top:12px}'
      + '.ohead{background:#1c1c1a;color:#fff;font-size:10.5px;letter-spacing:.24em;text-transform:uppercase;padding:5px 14px}'
      + '.obody{padding:10px 16px 12px}'
      + '.foot{margin-top:12px;padding-top:6px;border-top:1px solid #d8d6d0;font-size:10px;color:#7a7a74;display:flex;justify-content:space-between}'
      + '
