@font-face{font-family:"Helvetica Now Display";font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/helvetica-now-display-400.woff2) format("woff2")}
@font-face{font-family:"Helvetica Now Display";font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/helvetica-now-display-500.woff2) format("woff2")}
@font-face{font-family:"Helvetica Now Display";font-style:normal;font-weight:600 700;font-display:swap;src:url(/fonts/helvetica-now-display-600.woff2) format("woff2")}
:root{
  --primary-creme:#FAFAF1; --primary-clay:#EFEDE0; --primary-beige:#E1D8C0;
  --secondary-coconut:#FDFCFA; --secondary-earth:#B8AB8A; --secondary-taupe:#D3C9BE;
  --secondary-driftwood:#7A6F63; --secondary-almond:#A89278; --secondary-mocha:#6E4B30;
  --secondary-chocolate:#421D08; --secondary-charcoal:#1F1F1F;
  --seasonal-dark-mint:#5F7262; --seasonal-terracotta:#8A3B25;

  --background:var(--primary-creme); --card:var(--secondary-coconut); --card-foreground:var(--secondary-charcoal);
  --muted:var(--primary-clay); --muted-strong:var(--primary-beige);
  --foreground:var(--secondary-charcoal); --muted-foreground:var(--secondary-driftwood);
  --foreground-inverse:var(--primary-creme);
  --primary:var(--secondary-charcoal); --primary-foreground:var(--primary-creme);
  --accent:var(--secondary-mocha); --accent-foreground:var(--primary-creme); --accent-soft:var(--secondary-earth);
  --border:var(--primary-beige); --border-subtle:var(--primary-clay); --input:var(--secondary-almond);
  --ring:var(--secondary-mocha);
  --success:var(--seasonal-dark-mint); --destructive:var(--seasonal-terracotta);

  --radius-sm:8px; --radius:10px; --radius-lg:16px; --radius-full:9999px;
  --shadow-sm:0 1px 2px rgba(31,31,31,.06);
  --shadow-md:0 4px 12px -2px rgba(31,31,31,.10);
  --shadow-lg:0 12px 32px -8px rgba(31,31,31,.18);
  --font-sans:"Helvetica Now Display","Helvetica Now",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;
  --font-mono:ui-monospace,"SF Mono",Menlo,Consolas,monospace;
}
/* Light only, deliberately — vetsak project convention: artifacts read like a fixed screenshot,
   never flip with the viewer's OS theme. */
*{box-sizing:border-box}
html{background:var(--background)}
body{margin:0;background:var(--background);color:var(--foreground);font-family:var(--font-sans);font-size:15px;line-height:1.5;-webkit-font-smoothing:antialiased}
.mono{font-family:var(--font-mono);font-variant-numeric:tabular-nums}
a{color:inherit}
::selection{background:var(--accent-soft);color:var(--foreground-inverse)}

/* ---- layout ---- */
.wrap{max-width:640px;margin:0 auto;padding:36px 20px 80px}
@media(min-width:760px){.wrap{padding:56px 24px 100px}}
.logo{display:flex;justify-content:center;margin-bottom:34px}
.logo svg{width:104px;height:auto;color:var(--foreground)}

/* ---- intro ---- */
@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
.eyebrow,h1.headline,.sub{opacity:0;animation:rise 1.1s cubic-bezier(.16,1,.3,1) forwards}
.eyebrow{font-family:var(--font-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);font-weight:600;text-align:center;margin-bottom:10px;animation-delay:.05s}
h1.headline{font-size:clamp(28px,6vw,38px);line-height:1.12;letter-spacing:.005em;font-weight:500;text-align:center;margin:0 0 12px;animation-delay:.22s}
.sub{color:var(--muted-foreground);font-size:15px;text-align:center;max-width:46ch;margin:0 auto 32px;line-height:1.55;animation-delay:.42s}
@media(prefers-reduced-motion:reduce){.eyebrow,h1.headline,.sub{animation:none;opacity:1}}

/* ---- progress + stepper ---- */
.progress{height:6px;background:var(--muted);border-radius:var(--radius-full);overflow:hidden;margin-bottom:8px}
.progress>div{height:100%;background:var(--accent);border-radius:var(--radius-full);transition:width .25s ease}
.steplabel{font-size:12.5px;color:var(--muted-foreground);text-align:center;margin-bottom:22px}
.steplabel b{color:var(--foreground);font-weight:600}
.stepper{display:none;align-items:center;justify-content:center;margin-bottom:28px}
@media(min-width:640px){.stepper{display:flex}}
.step{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted-foreground)}
.step .n{width:26px;height:26px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;flex:none;background:var(--card)}
.step.done .n{background:var(--success);border-color:var(--success);color:#fff}
.step.active{color:var(--foreground);font-weight:600}
.step.active .n{background:var(--primary);border-color:var(--primary);color:var(--primary-foreground)}
.step-line{width:36px;height:1px;background:var(--border);margin:0 10px}
.step{cursor:pointer;border-radius:var(--radius);padding:5px 7px;margin:0 -7px;
  transition:background .13s,color .13s}
.step:hover{background:var(--muted);color:var(--foreground)}
.step:focus-visible{outline:none;box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 26%,transparent)}

/* ---- card / fields ---- */
.card{background:var(--card);color:var(--card-foreground);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.card-body{padding:26px 22px}
@media(min-width:640px){.card-body{padding:32px 34px}}
.stepview{display:none}
.stepview.on{display:block}
.fieldset{display:flex;flex-direction:column;gap:20px}
.field{display:flex;flex-direction:column;gap:7px}
.label{font-size:13.5px;font-weight:600}
.label .req{color:var(--destructive)}
.label .optmark{font-weight:500;font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted-foreground);margin-left:5px}
.hint{font-size:12.5px;color:var(--muted-foreground);margin-top:-2px}
.input,.select,.textarea{width:100%;font-family:inherit;font-size:15px;color:var(--foreground);
  background:var(--background);border:1px solid var(--input);border-radius:var(--radius);height:44px;
  padding:0 13px;transition:border-color .13s}
.textarea{height:auto;min-height:92px;padding:11px 13px;resize:vertical;line-height:1.5}
.input::placeholder,.textarea::placeholder{color:var(--muted-foreground)}
.input:focus,.select:focus,.textarea:focus{outline:none;border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%,transparent)}
.input[aria-invalid="true"],.select[aria-invalid="true"]{border-color:var(--destructive)}
.err{font-size:12.5px;color:var(--destructive);display:none}
.field.invalid .err{display:block}
.select{appearance:none;padding-right:36px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A6F63' stroke-width='2' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat:no-repeat;background-position:right 13px center;background-size:16px}
.input-group{display:flex;align-items:center}
.input-group .addon{height:44px;display:flex;align-items:center;padding:0 13px;font-size:15px;color:var(--muted-foreground);background:var(--muted);border:1px solid var(--input);border-right:0;border-radius:var(--radius) 0 0 var(--radius)}
.input-group .input{border-radius:0 var(--radius) var(--radius) 0}

/* ---- custom dropdown (combo) ---- */
.combo{position:relative}
.select-trigger{width:100%;display:flex;align-items:center;justify-content:space-between;gap:8px;
  font-family:inherit;font-size:15px;text-align:left;color:var(--foreground);background:var(--background);
  border:1px solid var(--input);border-radius:var(--radius);height:44px;padding:0 13px;cursor:pointer;transition:border-color .13s}
.select-trigger .ct.ph{color:var(--muted-foreground)}
.select-trigger:hover{border-color:var(--muted-foreground)}
.select-trigger:focus-visible{outline:none;border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%,transparent)}
.select-trigger[aria-invalid="true"]{border-color:var(--destructive)}
.select-trigger .chev{width:16px;height:16px;color:var(--muted-foreground);flex:none;transition:transform .15s}
.combo.open .select-trigger .chev{transform:rotate(180deg)}
.menu{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
  box-shadow:var(--shadow-md);padding:5px;min-width:210px}
.popmenu{position:absolute;top:calc(100% + 6px);left:0;right:0;z-index:40;display:none;max-height:260px;overflow:auto}
.popmenu.open{display:block}
.menu-item{display:flex;align-items:center;gap:9px;padding:9px 10px;border-radius:var(--radius-sm);
  font-size:14.5px;cursor:pointer}
.menu-item:hover,.menu-item.hi{background:var(--muted)}
.menu-item.sel{font-weight:600}
.menu-item .ck{width:15px;height:15px;flex:none;color:var(--accent);visibility:hidden}
.menu-item.sel .ck{visibility:visible}

/* ---- radio / check ---- */
.opt{display:flex;align-items:flex-start;gap:11px;cursor:pointer;padding:14px 15px;border:1px solid var(--border);border-radius:var(--radius);transition:border-color .13s,background .13s}
.opt:hover{border-color:var(--muted-foreground)}
.opt input{appearance:none;margin:2px 0 0;width:18px;height:18px;flex:none;border:1.5px solid var(--input);border-radius:50%;position:relative;cursor:pointer}
.opt input:checked{background:var(--primary);border-color:var(--primary)}
.opt input:checked::after{content:"";position:absolute;inset:5px;border-radius:50%;background:var(--primary-foreground)}
.opt.checked{border-color:var(--primary);background:color-mix(in srgb,var(--accent) 6%,var(--card))}
.opt input[type=checkbox]{border-radius:5px}
.opt input[type=checkbox]:checked::after{inset:0;border-radius:0;background:transparent;
  content:"";border:solid var(--primary-foreground);border-width:0 2px 2px 0;
  width:5px;height:9px;position:absolute;left:5px;top:2px;transform:rotate(45deg)}
.opt .cd b{display:block;font-size:14.5px;font-weight:600}
.opt .cd span{display:block;font-size:12.5px;color:var(--muted-foreground);margin-top:2px}

/* ---- sofa set picker ---- */
.sofagrid{display:grid;grid-template-columns:1fr;gap:10px}
@media(min-width:520px){.sofagrid{grid-template-columns:repeat(3,1fr)}}
.sofacard{border:1px solid var(--border);border-radius:var(--radius-lg);padding:16px 14px;text-align:center;cursor:pointer;transition:border-color .13s,background .13s}
.sofacard:hover{border-color:var(--muted-foreground)}
.sofacard.checked{border-color:var(--primary);background:color-mix(in srgb,var(--accent) 6%,var(--card))}
.sofacard svg{color:var(--tint,var(--foreground));width:100%;height:auto;max-width:120px;margin:0 auto 10px;transition:color .2s}
.sofacard .sofa-photo{width:100%;height:80px;object-fit:contain;margin:0 auto 10px;display:block}
.sofacard b{display:block;font-size:13.5px;font-weight:600}
.sofacard span{display:block;font-size:11.5px;color:var(--muted-foreground);margin-top:2px}
.sofacard .mods{font-size:10.5px;line-height:1.4;margin-top:5px;color:var(--muted-foreground);opacity:.85}
.sofacard .sofa-icon{max-width:96px}
.sofacard .shoplink{display:inline-block;margin-top:8px;font-size:11.5px;font-weight:600;color:var(--accent);
  text-decoration:none;border-bottom:1px solid color-mix(in srgb,var(--accent) 35%,transparent)}
.sofacard .shoplink:hover{color:var(--secondary-chocolate)}
.sofacard .set-diagram{color:var(--tint,var(--secondary-driftwood));height:34px;margin:0 auto 10px;display:block}
.sofacard.checked .set-diagram{color:var(--tint,var(--foreground))}

/* ---- fabric picker ---- */
.fabricgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
@media(min-width:520px){.fabricgrid{grid-template-columns:repeat(6,1fr)}}
.fabriccard{border:1px solid var(--border);border-radius:var(--radius);padding:8px;text-align:center;cursor:pointer;transition:border-color .13s}
.fabriccard:hover{border-color:var(--muted-foreground)}
.fabriccard.checked{border-color:var(--primary)}
.fabriccard .fsw{aspect-ratio:1;border-radius:var(--radius-sm);background-size:cover;background-position:center;margin-bottom:7px;border:1px solid var(--border-subtle)}
.fabriccard b{display:block;font-size:11.5px;font-weight:600}
.unsure-fsw{background:var(--muted);display:grid;place-items:center;color:var(--muted-foreground);font-weight:700;font-size:1.1rem}
.sofacard.unsure .unsure-icon{width:44px;height:44px;margin:0 auto 10px;border-radius:50%;background:var(--muted);color:var(--muted-foreground);display:grid;place-items:center;font-weight:700;font-size:1.2rem}

/* ---- upload ---- */
.grid2col{display:grid;grid-template-columns:1fr;gap:10px}
@media(min-width:480px){.grid2col{grid-template-columns:1fr 1fr}}
.dropzone{border:1.5px dashed var(--input);border-radius:var(--radius-lg);padding:26px 16px;text-align:center;cursor:pointer;transition:border-color .13s,background .13s}
.dropzone:hover,.dropzone.drag{border-color:var(--accent);background:color-mix(in srgb,var(--accent) 5%,var(--card))}
.dropzone svg{width:26px;height:26px;color:var(--muted-foreground);margin-bottom:8px}
.dropzone b{display:block;font-size:14px}
.dropzone span{display:block;font-size:12.5px;color:var(--muted-foreground);margin-top:3px}
.thumbs{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.thumbs img{width:64px;height:64px;object-fit:cover;border-radius:var(--radius-sm);border:1px solid var(--border)}

/* ---- geo sliders ---- */
.georow{display:flex;align-items:center;gap:10px;padding:8px 0}
.georow .gc{width:118px;flex:none;font-size:13.5px;font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.georow input[type=range]{flex:1;accent-color:var(--accent);height:4px}
.georow .gv{width:42px;text-align:right;font-family:var(--font-mono);font-size:13px;flex:none;font-variant-numeric:tabular-nums}
.georow .rm{width:26px;height:26px;border-radius:50%;border:none;background:transparent;color:var(--muted-foreground);cursor:pointer;flex:none;display:grid;place-items:center}
.georow .rm:hover{background:var(--muted);color:var(--destructive)}
.georow.add{border-top:1px solid var(--border-subtle);margin-top:4px;padding-top:12px;justify-content:space-between}
.geo-total{font-size:12.5px;color:var(--muted-foreground)}
.geo-total b{color:var(--foreground);font-family:var(--font-mono)}
.geo-alt{font-size:12.5px;color:var(--muted-foreground);margin-top:12px}
.linklike{background:none;border:none;padding:0;font:inherit;color:var(--accent);text-decoration:underline;text-underline-offset:2px;cursor:pointer}

/* ---- timeline month chips ---- */
.monthchips{display:flex;gap:8px;flex-wrap:wrap}
.mchips{display:flex;gap:8px;flex-wrap:wrap}
.mchip{border:1px solid var(--border);border-radius:var(--radius-full);padding:8px 16px;font-size:13.5px;cursor:pointer;
  transition:border-color .13s,background .13s,color .13s;user-select:none;background:var(--card)}
.mchip:hover{border-color:var(--muted-foreground)}
.mchip.sel{border-color:var(--accent);background:var(--accent);color:var(--accent-foreground)}
.mchip.off{opacity:.42;cursor:not-allowed}
.mktrow{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.mktrow .rank{width:74px;flex:none;font-size:12px;letter-spacing:.07em;text-transform:uppercase;color:var(--muted-foreground)}
.mktpick{flex:1;text-align:left;height:42px;border:1px solid var(--input);border-radius:var(--radius);background:var(--background);
  font-family:inherit;font-size:14.5px;color:var(--foreground);padding:0 13px;cursor:pointer;display:flex;align-items:center;justify-content:space-between}
.mktpick.ph{color:var(--muted-foreground)}
.mktrow .rm{width:30px;height:30px;border-radius:50%;border:none;background:transparent;color:var(--muted-foreground);cursor:pointer;flex:none}
.mktrow .rm:hover{background:var(--muted);color:var(--destructive)}
.platseg{margin-bottom:10px}
.monthchip{border:1px solid var(--border);border-radius:var(--radius-full);padding:8px 16px;font-size:13.5px;cursor:pointer;transition:border-color .13s,background .13s}
.monthchip:hover{border-color:var(--muted-foreground)}
.monthchip.sel{border-color:var(--primary);background:var(--primary);color:var(--primary-foreground)}

/* ---- combo search ---- */
.combo-search{padding:4px 4px 6px}
.combo-search input{width:100%;height:36px;border:1px solid var(--input);border-radius:var(--radius-sm);padding:0 10px;font-size:13.5px;font-family:inherit;background:var(--background);color:var(--foreground)}
.combo-search input:focus{outline:none;border-color:var(--ring)}

/* ---- buttons ---- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;font-family:inherit;font-size:14.5px;font-weight:600;height:44px;padding:0 22px;border-radius:var(--radius);border:1px solid transparent;cursor:pointer;transition:opacity .13s,background .13s}
.btn svg{width:16px;height:16px}
.btn-default{background:var(--primary);color:var(--primary-foreground)}
.btn-default:hover{opacity:.88}
.btn-default:disabled{opacity:.4;cursor:not-allowed}
.btn-ghost{background:transparent;color:var(--foreground)}
.btn-ghost:hover{background:var(--muted)}
.navrow{display:flex;justify-content:space-between;align-items:center;margin-top:26px}
.navrow .btn{min-width:118px}
.savewrap{display:flex;align-items:center;gap:10px;margin-left:auto;margin-right:10px}
.savenote{font-size:12px;color:var(--success);opacity:0;transition:opacity .2s}
.savenote.on{opacity:1}

/* ---- review ---- */
.review-row{display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid var(--border-subtle);font-size:13.5px}
.review-row:last-child{border-bottom:none}
.review-row .k{color:var(--muted-foreground);flex:none;width:42%}
.review-row .v{font-weight:500;text-align:right;word-break:break-word}

/* ---- thanks ---- */
.thanks{text-align:center;padding:20px 6px}
.thanks .ok{width:52px;height:52px;border-radius:50%;background:var(--success);color:#fff;display:grid;place-items:center;margin:0 auto 18px}
.thanks h2{font-size:22px;margin:0 0 8px;font-weight:600}
.thanks p{color:var(--muted-foreground);font-size:14.5px;max-width:38ch;margin:0 auto}

.foot{text-align:center;margin-top:28px;font-size:12px;color:var(--muted-foreground)}
.time-estimate{text-align:center;font-size:12.5px;color:var(--muted-foreground);margin:20px 0 0}

/* ---- notes / callouts ---- */
.note{border:1px solid var(--border);border-left:3px solid var(--accent-soft);
  background:color-mix(in srgb,var(--accent) 4%,var(--card));border-radius:var(--radius);
  padding:12px 14px;font-size:12.5px;color:var(--muted-foreground);line-height:1.5}
.note b{color:var(--foreground)}
.note.ok{border-left-color:var(--success);background:color-mix(in srgb,var(--success) 8%,var(--card))}
.note+.note{margin-top:8px}

/* ---- handle lookup ---- */
.fetchrow{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.btn-sm{height:36px;padding:0 14px;font-size:13px;border:1px solid var(--accent);background:var(--accent);color:var(--accent-foreground)}
.btn-sm:hover{background:var(--secondary-chocolate);border-color:var(--secondary-chocolate)}
.btn-sm:disabled{background:var(--muted);border-color:var(--border);color:var(--muted-foreground);cursor:not-allowed}
.spinner{width:14px;height:14px;border-radius:50%;border:2px solid var(--border);
  border-top-color:var(--accent);animation:spin .7s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
@media(prefers-reduced-motion:reduce){.spinner{animation-duration:2.4s}}
.fetchstatus{font-size:12.5px;color:var(--muted-foreground);display:flex;align-items:center;gap:7px}

/* ---- audience stats ---- */
.statgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:9px}
@media(min-width:540px){.statgrid{grid-template-columns:repeat(3,1fr)}}
.stat{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:11px 12px}
.stat input{width:100%;border:none;background:transparent;font-family:var(--font-mono);font-size:17px;
  font-weight:600;color:var(--foreground);padding:0;font-variant-numeric:tabular-nums}
.stat input:focus{outline:none}
.stat .sk{font-size:10.5px;color:var(--muted-foreground);letter-spacing:.09em;text-transform:uppercase;margin-top:4px}
.badge{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;letter-spacing:.04em;
  text-transform:uppercase;color:var(--success);background:color-mix(in srgb,var(--success) 12%,var(--card));
  border-radius:var(--radius-full);padding:3px 9px}

/* ---- segmented control ---- */
.seg{display:inline-flex;background:var(--muted);border-radius:var(--radius-full);padding:3px;gap:2px;align-self:flex-start}
.seg button{border:none;background:transparent;font-family:inherit;font-size:12.5px;font-weight:600;
  color:var(--muted-foreground);padding:6px 14px;border-radius:var(--radius-full);cursor:pointer;transition:background .13s,color .13s}
.seg button.on{background:var(--card);color:var(--foreground);box-shadow:var(--shadow-sm)}
.segpane{display:none}
.segpane.on{display:block}

/* ---- colour picker ---- */
.colorgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
@media(min-width:480px){.colorgrid{grid-template-columns:repeat(3,1fr)}}
.colorcard{display:flex;align-items:center;gap:9px;border:1px solid var(--border);border-radius:var(--radius);
  padding:8px 10px;cursor:pointer;font-size:12.5px;transition:border-color .13s,background .13s;text-align:left}
.colorcard:hover{border-color:var(--muted-foreground)}
.colorcard.checked{border-color:var(--primary);background:color-mix(in srgb,var(--accent) 6%,var(--card))}
.colorcard .dot{width:22px;height:22px;border-radius:50%;flex:none;border:1px solid rgba(31,31,31,.16)}
.colorcard .cn{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.colorcard .cl{display:block;font-size:10.5px;color:var(--muted-foreground);letter-spacing:.04em;text-transform:uppercase}
.colorcard.any .dot{background:var(--muted);display:grid;place-items:center;color:var(--muted-foreground);font-weight:700;font-size:12px}

/* ---- pillow bundle ---- */
.bundle{border:1px solid var(--border);border-radius:var(--radius);padding:13px 14px;
  background:color-mix(in srgb,var(--accent) 4%,var(--card))}
.bundle-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px}
.bundle-head b{font-size:13.5px}
.bundle ul{margin:8px 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:5px}
.bundle li{font-size:13px;display:flex;justify-content:space-between;gap:12px;color:var(--muted-foreground)}
.bundle li b{color:var(--foreground);font-weight:600;font-family:var(--font-mono)}

/* ---- screenshot preview ---- */
.shotwrap{display:flex;gap:12px;align-items:flex-start;margin-top:10px}
.shotwrap img{width:96px;height:96px;object-fit:cover;border-radius:var(--radius-sm);border:1px solid var(--border)}

/* ---- review: handoff panel ---- */
.handoff{margin-top:22px;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.handoff-head{background:var(--muted);padding:12px 15px;font-size:12px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted-foreground)}
.handoff-body{padding:15px}
.pipeline{display:flex;flex-direction:column;gap:0}
.pipe{display:flex;gap:12px;align-items:flex-start;padding:10px 0}
.pipe+.pipe{border-top:1px solid var(--border-subtle)}
.pipe .pn{width:24px;height:24px;border-radius:50%;background:var(--muted-strong);color:var(--foreground);
  display:grid;place-items:center;font-size:11px;font-weight:700;flex:none;font-family:var(--font-mono)}
.pipe .pt b{display:block;font-size:13.5px}
.pipe .pt span{display:block;font-size:12.5px;color:var(--muted-foreground);margin-top:2px}
.scorerow{display:flex;gap:9px;flex-wrap:wrap;margin-top:12px}
.scorechip{border:1px solid var(--border);border-radius:var(--radius-full);padding:6px 13px;font-size:12.5px;
  background:var(--card)}
.scorechip b{font-family:var(--font-mono);font-weight:600}

/* fabric card badge (outdoor) — data-driven from ops_fabric */
.fabriccard .fbadge{display:block;margin-top:2px;font-size:10px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted-foreground)}

/* --- entry screen + vetsak arrow (from vetsak.com slideshow arrows, 31x17 line arrow) --- */
.welcome{margin:22px auto 0;max-width:520px;text-align:center}
.welcome-list{list-style:none;margin:0 0 22px;padding:0;display:grid;gap:8px;text-align:left}
.welcome-list li{display:flex;justify-content:space-between;gap:12px;align-items:baseline;padding:11px 14px;border:1px solid var(--border);border-radius:var(--radius);background:var(--card)}
.welcome-list li b{font-size:13.5px;font-weight:600}
.welcome-list li span{font-size:12.5px;color:var(--muted-foreground);text-align:right}
.btn-start{padding:14px 28px;font-size:15px}
.arr{width:22px;height:12px;display:inline-block;vertical-align:middle;margin-left:8px;transition:transform .15s}
.btn:hover .arr,.shoplink:hover .arr{transform:translateX(3px)}
.shoplink .arr{width:16px;height:9px;margin-left:5px}
