:root{
  --blue:#2F6BFF;
  --blue-dark:#1D45AD;
  --blue-tint:#EEF3FF;
  --blue-tint-2:#F6F9FF;
  --ink:#101522;
  --body-text:#4B5568;
  --muted:#7A8598;
  --line:#E4E8F0;
  --amber:#FF7A18;
  --amber-tint:#FFF3E9;
  --bar:#0E1320;
  --star:#FFB020;
  --wrap:100%;
  /* Fluid gutter. A fixed 28px looked like zero bumper on a wide monitor once
     the 1280px max-width came off. Scales 18px (phone) -> ~96px (ultrawide). */
  --pad:clamp(20px,4vw,104px);
  --r:10px;
  /* Height of the sticky header (head-main + mainnav) plus breathing room.
     Everything that sticks below the header offsets from this, so changing the
     logo size only means changing it here. */
  --stick:166px;
}
/* Full-bleed layout — gutters grow with the viewport so content is never pinned
   to the bezel. Reading-width caps live on .prose / .faq / .formcard. */
*{box-sizing:border-box}
/* MAKE hidden MEAN HIDDEN. The UA sheet's [hidden]{display:none} is beaten by any
   class that sets display — .pricebox .lines div{display:flex}, .filerow, .chips.
   That silently rendered every conditional row (pole-pocket setup, rush fee, wind
   slits, the file row) whether or not it applied. Keep this above everything. */
[hidden]{display:none!important}
html{scroll-behavior:smooth}
body{
  margin:0;background:#fff;color:var(--body-text);
  font-family:"Figtree",system-ui,-apple-system,sans-serif;
  font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
:focus-visible{outline:2px solid var(--blue);outline-offset:2px}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--pad)}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}

h1,h2,h3,h4{color:var(--ink);margin:0;font-weight:800;letter-spacing:-0.02em;line-height:1.12}
h1{font-size:clamp(34px,5vw,64px)}
h2{font-size:clamp(26px,3vw,38px)}
h3{font-size:18px;font-weight:700;letter-spacing:-0.01em}
h4{font-size:16px;font-weight:700}
p{margin:0}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:15px;font-weight:700;padding:14px 26px;border-radius:var(--r);
  border:2px solid transparent;cursor:pointer;transition:.15s ease;white-space:nowrap;
}
.btn-primary{background:var(--blue);color:#fff}
.btn-primary:hover{background:var(--blue-dark)}
.btn-outline{background:#fff;color:var(--ink);border-color:var(--line)}
.btn-outline:hover{border-color:var(--ink)}
.btn-white{background:#fff;color:var(--blue-dark)}
.btn-white:hover{background:var(--blue-tint)}
.btn-sm{padding:10px 18px;font-size:14px;border-radius:8px}
.btn-block{width:100%}


.announce{background:var(--blue);color:#fff;text-align:center;font-size:14px;font-weight:600;padding:11px 20px}
.announce span{opacity:.55;margin:0 10px}

.head{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:60}
.head-main{display:flex;align-items:center;gap:28px;padding-top:18px;padding-bottom:18px}
/* Constrain with max-* and leave BOTH dimensions auto. A fixed height plus the
   global img{max-width:100%} squashed the logo vertically once the header ran
   out of room — width was clamped while height stayed pinned. */
.logo img{max-height:56px;max-width:100%;height:auto;width:auto}
.search{flex:1;max-width:520px;position:relative}
.search input{
  width:100%;border:2px solid var(--line);border-radius:var(--r);
  padding:12px 16px;font-size:15px;font-family:inherit;color:var(--ink);background:var(--blue-tint-2);
}
.search input::placeholder{color:var(--muted)}
.search input:focus{outline:none;border-color:var(--blue);background:#fff}

/* ── search results dropdown ────────────────────────────────────────
   z-index has to clear the sticky product rail (--stick lives at 40). */
.sresults{
  position:absolute;top:calc(100% + 6px);left:0;right:0;z-index:120;
  background:#fff;border:2px solid var(--blue);border-radius:var(--r);
  box-shadow:0 18px 44px rgba(16,32,56,.20);overflow:hidden;max-height:70vh;overflow-y:auto;
}
.sitem{display:grid;grid-template-columns:1fr auto;gap:2px 12px;padding:11px 15px;border-bottom:1px solid var(--line)}
.sitem:last-child{border-bottom:none}
.sitem:hover,.sitem.on{background:var(--blue-tint-2)}
.sitem .st{font-weight:700;font-size:14.5px;color:var(--ink)}
.sitem .sg{font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--muted);align-self:center}
.sitem .sd{grid-column:1/-1;font-size:12.5px;color:var(--muted);line-height:1.45}
.sitem mark{background:#fde68a;color:inherit;border-radius:2px;padding:0 1px}
.snone{padding:16px 15px;font-size:14px;color:var(--ink)}
.snone span{display:block;margin-top:5px;font-size:12.5px;color:var(--muted)}
.head-links{margin-left:auto;display:flex;align-items:center;gap:24px;font-size:14px;font-weight:600;color:var(--ink)}
.head-links .phone small{display:block;font-size:11.5px;font-weight:600;color:var(--muted)}
.head-links a:hover{color:var(--blue)}
.cart-pill{display:flex;align-items:center;gap:8px;background:var(--blue-tint);color:var(--blue-dark);padding:9px 16px;border-radius:20px}
.cart-pill:hover{color:var(--blue-dark)}

.mainnav{border-top:1px solid var(--line)}
.mainnav .wrap{display:flex;gap:4px;overflow-x:auto;scrollbar-width:none}
.mainnav .wrap::-webkit-scrollbar{display:none}
.mainnav a{padding:14px 16px;font-size:14.5px;font-weight:600;color:var(--ink);border-bottom:3px solid transparent;white-space:nowrap;transition:.15s}
.mainnav a:hover{color:var(--blue);border-color:var(--blue)}
.mainnav a.hot{color:var(--amber)}

.hero{background:linear-gradient(180deg,var(--blue-tint-2),#fff);padding:70px 0 78px;border-bottom:1px solid var(--line)}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.pill{display:inline-flex;align-items:center;gap:8px;background:var(--amber-tint);color:#9C4400;font-size:13px;font-weight:700;padding:7px 14px;border-radius:20px;margin-bottom:20px}
.hero h1{margin-bottom:18px}
.hero h1 em{font-style:normal;color:var(--blue)}
.hero-sub{font-size:19px;max-width:44ch;margin-bottom:28px}
.badges{display:flex;gap:26px;flex-wrap:wrap;margin-bottom:30px}
.badge{display:flex;align-items:center;gap:9px;font-size:14.5px;font-weight:700;color:var(--ink)}
.tick{width:20px;height:20px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;flex:none}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

/* Placeholders read as "designed" rather than "broken" until real photography
   lands. A dashed grey box says missing; a lit gradient tile says pending. */
.ph{
  background:linear-gradient(135deg,#E4ECFD 0%,#D6E3FB 48%,#EFF4FF 100%);
  border:0;border-radius:14px;position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:#7D93C6;font-size:12.5px;font-weight:700;padding:16px;letter-spacing:.01em;
}
.ph::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse at 26% 16%,rgba(255,255,255,.8),transparent 60%);
}

/* ═══ dark stat band ═══ */
.statband{background:var(--bar);color:#fff;padding:58px 0}
.statband h2{color:#fff}
.statband .lede{color:#93A6C9;margin-top:10px;font-size:16px;max-width:56ch}
.statgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-top:38px}
.stat b{display:block;font-size:clamp(30px,3.5vw,46px);font-weight:800;letter-spacing:-.03em;line-height:1;color:#fff}
.stat b.hi{color:var(--amber)}
.stat span{display:block;font-size:14px;color:#93A6C9;margin-top:10px;line-height:1.55;max-width:28ch}

/* ═══ live price demo ═══ */
.demo{background:linear-gradient(165deg,#101728 0%,#0E1320 55%,#141C2E 100%);color:#fff;padding:66px 0;overflow:hidden}
.demo h2{color:#fff;max-width:16ch}
.demo .lede{color:#A6B8D6;margin-top:14px;font-size:17px;max-width:46ch}
.demo-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.demo-card{background:#fff;color:var(--body-text);border-radius:18px;padding:26px 26px 28px;box-shadow:0 24px 60px rgba(0,0,0,.4)}
.demo-card .lbl{font-size:12px;font-weight:800;color:var(--muted);text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;display:block}
.demo-amt{font-size:clamp(40px,5.2vw,62px);font-weight:800;color:var(--ink);letter-spacing:-.035em;line-height:1;transition:.18s}
.demo-sub{font-size:14px;color:var(--muted);margin-top:6px}
.demo-row{display:flex;justify-content:space-between;font-size:13.5px;padding:5px 0;border-top:1px solid var(--line);margin-top:14px;padding-top:12px}
.demo-row b{color:var(--ink)}
.demo-note{color:#8FA3C4;font-size:13px;margin-top:16px}

@media (prefers-reduced-motion:no-preference){
  .reveal{opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s ease}
  .reveal.in{opacity:1;transform:none}
}
.hero .ph{aspect-ratio:4/3}
.hero-img{aspect-ratio:4/3;border-radius:14px;overflow:hidden;background:var(--blue-tint);box-shadow:0 14px 40px rgba(16,21,34,.13)}
.hero-img img{width:100%;height:100%;object-fit:cover;display:block}

.trust{padding:44px 0;border-bottom:1px solid var(--line)}
.trust-head{text-align:center;margin-bottom:28px}
.trust-head p{margin-top:8px;font-size:15px}
.thumbs{display:grid;grid-template-columns:repeat(8,1fr);gap:10px}
.thumbs .ph{aspect-ratio:1;border-radius:10px;font-size:11px}

.sec{padding:64px 0}
.sec-alt{background:var(--blue-tint-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;flex-wrap:wrap;margin-bottom:14px}
.sec-head p{margin-top:10px;font-size:16px;max-width:52ch}
.group-head{margin:34px 0 18px}
.group-head h3{font-size:20px}
.group-head p{font-size:14.5px;color:var(--muted);margin-top:4px}

.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.pcard{border:1px solid var(--line);border-radius:14px;background:#fff;overflow:hidden;display:flex;flex-direction:column;transition:.18s ease}
.pcard:hover{border-color:var(--blue);box-shadow:0 8px 24px rgba(16,21,34,.07);transform:translateY(-3px)}
.pcard-img{position:relative}
.pcard-img .ph{aspect-ratio:4/3;border:none;border-radius:0;background:var(--blue-tint)}
.min{position:absolute;top:10px;left:10px;background:#fff;color:var(--ink);font-size:11.5px;font-weight:700;padding:5px 10px;border-radius:14px;box-shadow:0 1px 4px rgba(0,0,0,.1)}
.min.rush{background:var(--amber);color:#fff}
.pcard-body{padding:16px 16px 18px;display:flex;flex-direction:column;flex:1}
.pcard-body h4{margin-bottom:6px}
.pcard-body .desc{font-size:13.5px;color:var(--muted);line-height:1.5;margin-bottom:12px}
.from{font-size:15px;font-weight:800;color:var(--ink);margin-bottom:4px}
.from small{font-size:12.5px;font-weight:600;color:var(--muted)}
.stars{font-size:12.5px;color:var(--muted);margin-bottom:14px}
.stars b{color:var(--star);font-weight:700;letter-spacing:1px}
.pcard .btn{margin-top:auto}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;margin-top:38px}
.step .ph{aspect-ratio:16/10;margin-bottom:16px}
.step .n{display:inline-block;background:var(--blue);color:#fff;font-size:12px;font-weight:800;width:24px;height:24px;line-height:24px;text-align:center;border-radius:50%;margin-bottom:10px}
.step h4{margin-bottom:7px}
.step p{font-size:14.5px}

.why{display:grid;grid-template-columns:repeat(3,1fr);gap:34px;margin-top:38px}
.why .ic{width:44px;height:44px;border-radius:12px;background:var(--blue-tint);color:var(--blue-dark);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:14px}
.why h4{margin-bottom:7px}
.why p{font-size:14.5px}

.trade{background:var(--blue);color:#fff;padding:60px 0}
.trade h2{color:#fff;max-width:18ch}
.trade p{color:#DAE5FF;margin-top:14px;max-width:48ch;font-size:16.5px}
/* Buttons sit right after the copy. space-between used to be fine at 1280px;
   full-bleed flung them to the far edge, half a screen from the text. */
.trade-grid{display:flex;justify-content:flex-start;align-items:center;gap:clamp(24px,3.5vw,64px);flex-wrap:wrap}
.trade .btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.trade .btn-outline:hover{border-color:#fff;background:rgba(255,255,255,.12)}

.faq{max-width:820px;margin:32px auto 0}
details{border-bottom:1px solid var(--line)}
summary{padding:20px 40px 20px 0;font-size:16.5px;font-weight:700;color:var(--ink);cursor:pointer;list-style:none;position:relative}
summary::-webkit-details-marker{display:none}
summary::after{content:"+";position:absolute;right:6px;top:16px;font-size:24px;font-weight:600;color:var(--blue)}
details[open] summary::after{content:"\2013"}
details p{padding:0 0 22px;font-size:15.5px;max-width:70ch}

footer{background:var(--bar);color:#98A2B5;font-size:14px;padding:56px 0 28px}
.fgrid{display:grid;grid-template-columns:1.5fr repeat(4,1fr);gap:36px}
.fgrid img{height:28px;width:auto;filter:invert(1) brightness(1.9);margin-bottom:16px}
footer h4{color:#fff;font-size:14px;margin-bottom:14px}
footer ul{list-style:none;padding:0;margin:0}
footer li{margin-bottom:9px}
footer a:hover{color:#fff}
.fbot{margin-top:44px;padding-top:22px;border-top:1px solid #1E2536;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:13px}

@media (max-width:1120px){
  .grid{grid-template-columns:repeat(3,1fr)}
  .thumbs{grid-template-columns:repeat(4,1fr)}
  .fgrid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:1000px){
  .demo-grid{grid-template-columns:1fr;gap:34px}
  .statgrid{grid-template-columns:repeat(2,1fr);gap:28px}
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .steps{grid-template-columns:repeat(2,1fr)}
  .why{grid-template-columns:repeat(2,1fr)}
  /* Search used to be display:none here, which left phones with no search at
     all. Now it wraps to its own full-width row under the logo instead — the
     header stays uncramped and mobile keeps the feature. */
  .head-main{flex-wrap:wrap}
  .search{order:3;flex-basis:100%;max-width:none;margin-top:4px}
  .head-links{order:2}
  .head-links .phone{display:none}
  /* The logo is ~5:1, so it eats width fast. Give the header room instead of
     letting flex squeeze the mark. */
  .head-main{gap:16px}
  .head-links{gap:18px}
  .logo img{max-height:46px}
}
@media (max-width:560px){
  .head-main{gap:12px;padding-top:14px;padding-bottom:14px}
  .head-links{gap:14px;font-size:13.5px}
  .logo img{max-height:34px}
  .cart-pill{padding:7px 12px}
  .announce{font-size:12.5px;padding:9px 14px}
  .announce span{margin:0 6px}
}
@media (max-width:680px){
  :root{--pad:18px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .steps,.why,.fgrid{grid-template-columns:1fr}
  .statgrid{grid-template-columns:1fr 1fr;gap:22px}
  .thumbs{grid-template-columns:repeat(3,1fr)}
  .sec{padding:46px 0}
}
@media (prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}html{scroll-behavior:auto}}

/* ═══ page shell ═══ */
.crumb{font-size:13.5px;color:var(--muted);padding-top:18px;padding-bottom:18px}
.crumb a:hover{color:var(--blue)}
.crumb span{margin:0 7px;opacity:.5}
.page-head{background:linear-gradient(180deg,var(--blue-tint-2),#fff);border-bottom:1px solid var(--line);padding:34px 0 40px}
.page-head p{margin-top:12px;font-size:17px;max-width:62ch}

/* ═══ product / configurator ═══ */
.prod{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;padding-top:40px;padding-bottom:10px}
.prod-visual{position:sticky;top:var(--stick)}
.prod-visual .ph{aspect-ratio:1;border-radius:16px}
.prod-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px}
.prod-thumbs .ph{aspect-ratio:1;border-radius:10px;font-size:11px}
.prod h1{font-size:clamp(28px,3.2vw,38px);margin-bottom:10px}
.prod-meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;font-size:13.5px;color:var(--muted);margin-bottom:16px}
.prod-meta .chip{background:var(--blue-tint);color:var(--blue-dark);font-weight:700;padding:4px 11px;border-radius:14px;font-size:12px}
.prod-meta .chip.rush{background:var(--amber-tint);color:#9C4400}
.prod-intro{font-size:16px;margin-bottom:26px}

.cfg{border:1px solid var(--line);border-radius:16px;padding:24px;background:#fff}
.fld{margin-bottom:20px}
.fld:last-child{margin-bottom:0}
.fld > label,.fld .lbl{display:block;font-size:13px;font-weight:700;color:var(--ink);margin-bottom:8px}
.fld .hint{font-size:12.5px;color:var(--muted);font-weight:500;margin-left:6px}
.fld .sub{display:block;font-size:12.5px;color:var(--muted);font-weight:500;margin-top:8px;line-height:1.55}
.fld .sub b{color:var(--ink);font-weight:700}
input:disabled,select:disabled{background:#F6F7FA;color:var(--muted);cursor:not-allowed}
.chips input:disabled + label{opacity:.38;cursor:not-allowed}
.chips input:disabled + label:hover{border-color:var(--line)}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.row3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
input[type=text],input[type=email],input[type=tel],input[type=number],select,textarea{
  width:100%;border:2px solid var(--line);border-radius:var(--r);padding:12px 14px;
  font-family:inherit;font-size:15px;color:var(--ink);background:#fff;
}
select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A8598' stroke-width='2'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:12px;padding-right:38px}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--blue)}
textarea{min-height:100px;resize:vertical}

.chips{display:flex;gap:8px;flex-wrap:wrap}
.chips input{position:absolute;opacity:0;width:0;height:0}
.chips label{
  border:2px solid var(--line);border-radius:9px;padding:9px 15px;font-size:14px;font-weight:600;
  color:var(--ink);cursor:pointer;transition:.15s;background:#fff;
}
.chips label:hover{border-color:var(--blue)}
.chips input:checked + label{border-color:var(--blue);background:var(--blue-tint);color:var(--blue-dark)}
.chips input:focus-visible + label{outline:2px solid var(--blue);outline-offset:2px}

.swatches{display:flex;gap:10px;flex-wrap:wrap}
.swatches input{position:absolute;opacity:0;width:0;height:0}
.swatches label{
  width:42px;height:42px;border-radius:9px;cursor:pointer;border:2px solid var(--line);
  transition:.15s;display:block;
}
.swatches input:checked + label{border-color:var(--blue);box-shadow:0 0 0 3px var(--blue-tint)}
.swatches input:focus-visible + label{outline:2px solid var(--blue);outline-offset:2px}

/* ═══ live artwork preview ═══ */
.preview{
  position:relative;background:var(--blue-tint);border:1px solid var(--line);
  border-radius:14px;overflow:hidden;display:flex;align-items:center;justify-content:center;
  background-image:linear-gradient(45deg,#E4EBFA 25%,transparent 25%,transparent 75%,#E4EBFA 75%),
                   linear-gradient(45deg,#E4EBFA 25%,transparent 25%,transparent 75%,#E4EBFA 75%);
  background-size:18px 18px;background-position:0 0,9px 9px;
}
/* Default is fill (stretch). The builder swaps these to show the customer what
   proportional placement actually costs them in coverage. */
.preview img{position:absolute;inset:0;width:100%;height:100%;object-fit:fill;display:block}
.preview.fit-contain img{object-fit:contain}
.preview.fit-cover img{object-fit:cover}

/* Detected artwork size + how it relates to the ordered size. */
.artinfo{border:1px solid var(--line);border-radius:11px;padding:12px 14px;margin-top:10px;font-size:13px}
.artinfo b{color:var(--ink)}
.artinfo .row{display:flex;justify-content:space-between;gap:12px;padding:2px 0}
.artinfo .warn{color:#9C4400;font-weight:700}
.artinfo .good{color:#186A35;font-weight:700}
.artinfo .act{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.artinfo .act button{
  border:2px solid var(--line);background:#fff;border-radius:8px;padding:7px 12px;
  font-family:inherit;font-size:12.5px;font-weight:700;color:var(--ink);cursor:pointer;transition:.15s;
}
.artinfo .act button:hover{border-color:var(--blue);color:var(--blue-dark);background:var(--blue-tint)}
.lockrow{display:flex;align-items:center;gap:9px;margin-top:9px;font-size:12.5px;font-weight:600;color:var(--body-text)}
.lockrow input{width:17px;height:17px;accent-color:var(--blue);flex:none}
.pv-empty{position:relative;z-index:1;text-align:center;color:#8FA6D6;font-size:13px;font-weight:600;padding:20px;max-width:34ch}
.pv-empty b{display:block;color:var(--blue-dark);font-size:14.5px;margin-bottom:4px}
/* The stage shrinks to fit — the whole banner is always visible without
   scrolling. JS sizes .preview in px to fit inside this box. */
.pv-scroll{display:flex;align-items:center;justify-content:center;min-height:180px}

.pv-hem{position:absolute;inset:0;border:1px dashed rgba(16,21,34,.4);pointer-events:none;z-index:3}
.pv-safe{position:absolute;border:1px dashed var(--blue);opacity:.65;pointer-events:none;z-index:3}
/* Drawn to real scale: 5/8" outer ring, 3/8" hole. JS sets width/height and
   border-width from the preview's px-per-inch, so the ring thickness is the
   actual 1/8" of metal rather than a fixed pixel value. */
.pv-grom{
  position:absolute;border-radius:50%;z-index:4;box-sizing:border-box;
  background:rgba(255,255,255,.62);border-style:solid;border-color:#5A6478;
  transform:translate(-50%,-50%);box-shadow:0 0 0 1px rgba(255,255,255,.65);
}
.pv-pocket{
  position:absolute;z-index:4;border:1px solid rgba(16,21,34,.45);
  background:repeating-linear-gradient(45deg,rgba(16,21,34,.22) 0 5px,rgba(255,255,255,.25) 5px 10px);
}
.pv-rope{position:absolute;z-index:4;background:#9A7742;border-radius:4px;box-shadow:0 0 0 1px rgba(0,0,0,.25)}
.pv-slit{position:absolute;z-index:4;background:rgba(16,21,34,.55);border-radius:2px}
.pv-dim{
  position:absolute;z-index:5;background:rgba(16,21,34,.82);color:#fff;font-size:10.5px;font-weight:700;
  padding:2px 7px;border-radius:9px;white-space:nowrap;letter-spacing:.02em;
}
.pv-bar{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;margin-top:11px;font-size:12.5px;font-weight:600;color:var(--muted)}
.pv-bar b{color:var(--ink);font-weight:700}
.pv-legend{display:flex;gap:15px;flex-wrap:wrap;font-size:11.5px;color:var(--muted);margin-top:9px;font-weight:600}
.pv-legend span{display:flex;align-items:center;gap:6px}
.pv-legend i{width:10px;height:10px;border-radius:50%;flex:none}
.pv-legend .lg-grom{background:#F2F4F8;border:2px solid #5A6478}
.pv-legend .lg-pocket{background:rgba(16,21,34,.3);border-radius:2px}
.pv-legend .lg-rope{background:#9A7742;border-radius:2px}
.pv-legend .lg-safe{background:transparent;border:1.5px dashed var(--blue);border-radius:2px}

.filerow{display:flex;align-items:center;gap:12px;border:1px solid var(--line);border-radius:11px;padding:11px 14px;margin-top:10px;font-size:13.5px}
.filerow .fic{width:34px;height:34px;flex:none;border-radius:8px;background:var(--blue-tint);color:var(--blue-dark);display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800}
.filerow .fmeta{flex:1;min-width:0}
.filerow b{display:block;color:var(--ink);font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.filerow span{font-size:12.5px;color:var(--muted)}
.filerow a{font-size:13px;font-weight:700;color:var(--blue);white-space:nowrap}
.drop.over{border-color:var(--blue);background:var(--blue-tint)}
.drop.bad{border-color:var(--amber);background:var(--amber-tint)}

/* live order-cutoff strip at the top of a configurator */
.cutoff{display:flex;align-items:center;gap:11px;border-radius:10px;padding:12px 15px;font-size:13.5px;font-weight:600;margin-bottom:20px;line-height:1.5}
.cutoff .dot{width:9px;height:9px;border-radius:50%;flex:none}
.cutoff b{font-weight:800}
.cutoff.go{background:#E7F6EC;color:#186A35}
.cutoff.go .dot{background:#1FA34C}
.cutoff.warn{background:var(--amber-tint);color:#7A3600}
.cutoff.warn .dot{background:var(--amber)}
.cutoff.off{background:#F1F3F7;color:var(--body-text)}
.cutoff.off .dot{background:var(--muted)}

/* quantity price tiles — pick a qty, see the each-price on the tile */
.qtiles{display:grid;grid-template-columns:repeat(6,1fr);gap:8px}
.qtiles input{position:absolute;opacity:0;width:0;height:0}
.qtiles label{
  display:block;border:2px solid var(--line);border-radius:9px;padding:9px 4px;
  text-align:center;cursor:pointer;transition:.15s;background:#fff;
}
.qtiles label b{display:block;font-size:15px;font-weight:800;color:var(--ink);line-height:1.2}
.qtiles label span{display:block;font-size:11px;font-weight:600;color:var(--muted);margin-top:3px}
.qtiles label:hover{border-color:var(--blue)}
.qtiles input:checked + label{border-color:var(--blue);background:var(--blue-tint)}
.qtiles input:checked + label span{color:var(--blue-dark)}
.qtiles input:focus-visible + label{outline:2px solid var(--blue);outline-offset:2px}
.qtiles .best{position:relative}
.qtiles input:checked + label .tagbest,.qtiles label .tagbest{
  position:absolute;top:-8px;left:50%;transform:translateX(-50%);background:var(--amber);color:#fff;
  font-size:9.5px;font-weight:800;padding:2px 7px;border-radius:10px;letter-spacing:.03em;text-transform:uppercase;
}

/* compact size entry — W × H with a unit suffix */
.dims{display:flex;align-items:center;gap:10px}
.dims .box{position:relative;flex:1}
.dims .box input{padding-right:38px}
.dims .box .u{position:absolute;right:13px;top:50%;transform:translateY(-50%);font-size:13px;font-weight:700;color:var(--muted);pointer-events:none}
.dims .x{font-size:15px;font-weight:800;color:var(--muted);flex:none}
.swapbtn{
  flex:none;width:42px;height:46px;border:2px solid var(--line);border-radius:9px;
  background:#fff;color:var(--body-text);font-size:17px;line-height:1;cursor:pointer;
  font-family:inherit;display:flex;align-items:center;justify-content:center;transition:.15s;
}
.swapbtn:hover{border-color:var(--blue);color:var(--blue-dark);background:var(--blue-tint)}
.swapbtn:active{transform:scale(.94)}
.dims .ft{font-size:13px;color:var(--muted);font-weight:600;flex:none;min-width:88px;text-align:right}

.drop{
  border:2px dashed #C2D2F5;border-radius:12px;background:var(--blue-tint-2);
  padding:26px 20px;text-align:center;cursor:pointer;transition:.15s;
}
.drop:hover{border-color:var(--blue);background:var(--blue-tint)}
.drop strong{display:block;color:var(--ink);font-size:15px;margin-bottom:4px}
.drop span{font-size:13px;color:var(--muted)}
.drop .or{display:block;margin-top:10px;font-size:13px;color:var(--blue);font-weight:700}

.pricebox{background:var(--blue-tint);border-radius:14px;padding:20px 22px;margin-top:22px}
.pricebox .top{display:flex;justify-content:space-between;align-items:flex-end;gap:16px}
.pricebox .amt{font-size:38px;font-weight:800;color:var(--ink);line-height:1;letter-spacing:-.02em}
.pricebox .per{font-size:14px;font-weight:700;color:var(--blue-dark);text-align:right}
.pricebox .per small{display:block;font-weight:600;color:var(--muted);font-size:12.5px;margin-top:3px}
.pricebox .lines{margin-top:14px;padding-top:14px;border-top:1px solid #D5E1FB;font-size:13.5px;color:var(--body-text)}
.pricebox .lines div{display:flex;justify-content:space-between;padding:3px 0}
.pricebox .lines b{color:var(--ink);font-weight:700}
.save{margin-top:14px;background:var(--amber-tint);color:#9C4400;font-size:13.5px;font-weight:700;padding:10px 14px;border-radius:9px}

.breaks{width:100%;border-collapse:collapse;font-size:14px;margin-top:10px}
.breaks th{text-align:left;font-size:12px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.04em;padding:0 12px 10px 0;border-bottom:1px solid var(--line)}
.breaks td{padding:12px 12px 12px 0;border-bottom:1px solid var(--line);color:var(--body-text)}
.breaks td:first-child{font-weight:700;color:var(--ink)}
.breaks tr.on td{background:var(--blue-tint)}

.specs{margin-top:44px;border-top:1px solid var(--line)}
.specs details{border-bottom:1px solid var(--line)}
.specs ul{margin:0 0 20px;padding-left:20px;font-size:15px}
.specs li{margin-bottom:7px}

/* ═══ forms / application ═══ */
.formcard{max-width:760px;margin:0 auto;border:1px solid var(--line);border-radius:16px;padding:34px}
.formcard h3{margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid var(--line)}
.formcard h3:not(:first-child){margin-top:36px}
.check{display:flex;gap:11px;align-items:flex-start;font-size:14.5px;margin-bottom:12px}
.check input{width:19px;height:19px;flex:none;margin-top:2px;accent-color:var(--blue)}
.side-notes{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:44px}
.side-notes h4{margin-bottom:6px}
.side-notes p{font-size:14.5px}

/* ═══ dashboard ═══ */
.dash{display:grid;grid-template-columns:230px 1fr;gap:40px;padding-top:32px;padding-bottom:60px}
.dashnav{position:sticky;top:var(--stick)}
.dashnav a{display:block;padding:10px 14px;border-radius:9px;font-size:14.5px;font-weight:600;color:var(--body-text);margin-bottom:2px}
.dashnav a:hover{background:var(--blue-tint-2);color:var(--ink)}
.dashnav a.on{background:var(--blue-tint);color:var(--blue-dark)}
.tiles{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:34px}
.tile{border:1px solid var(--line);border-radius:12px;padding:16px 18px}
.tile .n{font-size:30px;font-weight:800;color:var(--ink);line-height:1.1}
.tile .l{font-size:13.5px;color:var(--muted);margin-top:3px}
.tile.alert{border-color:var(--amber);background:var(--amber-tint)}
.tile.alert .n{color:#9C4400}
.block{margin-bottom:38px}
.block-head{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:14px}
.block-head h3{font-size:19px}
.block-head a{font-size:14px;font-weight:700;color:var(--blue)}
.orow{display:flex;align-items:center;gap:16px;border:1px solid var(--line);border-radius:12px;padding:14px 16px;margin-bottom:10px;transition:.15s}
.orow:hover{border-color:var(--blue)}
.orow .ph{width:64px;height:64px;flex:none;border-radius:9px;font-size:0;padding:0}
.orow .info{flex:1;min-width:0}
.orow .info b{display:block;color:var(--ink);font-size:15px}
.orow .info span{font-size:13.5px;color:var(--muted)}
.status{font-size:12.5px;font-weight:700;padding:5px 12px;border-radius:14px;white-space:nowrap}
.st-prod{background:var(--blue-tint);color:var(--blue-dark)}
.st-proof{background:var(--amber-tint);color:#9C4400}
.st-ship{background:#E7F6EC;color:#186A35}
.artgrid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.artgrid .ph{aspect-ratio:1;border-radius:10px;font-size:11px}
.artgrid .cap{font-size:12.5px;color:var(--body-text);margin-top:6px;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* ═══ content / reference pages ═══ */
.doc{display:grid;grid-template-columns:220px 1fr;gap:52px;align-items:start;padding-top:34px;padding-bottom:64px}
.doc-nav{position:sticky;top:var(--stick);font-size:14px;border-left:2px solid var(--line);padding-left:16px;max-height:calc(100vh - var(--stick) - 40px);overflow-y:auto}
.doc-nav b{display:block;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);margin-bottom:10px}
.doc-nav a{display:block;padding:6px 0;font-weight:600;color:var(--body-text)}
.doc-nav a:hover{color:var(--blue)}
.prose{max-width:74ch}
.prose h2{font-size:25px;margin:42px 0 12px;scroll-margin-top:calc(var(--stick) + 20px)}
.prose > h2:first-child{margin-top:0}
.prose h3{font-size:17px;margin:26px 0 8px}
.prose p{margin-bottom:14px;font-size:15.5px}
.prose ul,.prose ol{margin:0 0 18px;padding-left:22px;font-size:15.5px}
.prose li{margin-bottom:8px}
.prose .breaks{margin-bottom:24px}
.prose .faq{margin-top:0}
.note{background:var(--blue-tint-2);border-left:3px solid var(--blue);border-radius:0 10px 10px 0;padding:14px 18px;font-size:15px;margin:0 0 20px}
.note b{color:var(--ink)}
.note.warn{background:var(--amber-tint);border-color:var(--amber);color:#7A3600}
.note.warn b{color:#7A3600}
.updated{font-size:13.5px;color:var(--muted);margin-bottom:26px;padding-bottom:20px;border-bottom:1px solid var(--line)}

.dl{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:0 0 26px}
.dlitem{display:flex;align-items:center;gap:14px;border:1px solid var(--line);border-radius:12px;padding:13px 16px;transition:.15s}
.dlitem:hover{border-color:var(--blue);background:var(--blue-tint-2)}
.dlitem .ic{width:38px;height:38px;flex:none;border-radius:9px;background:var(--blue-tint);color:var(--blue-dark);display:flex;align-items:center;justify-content:center;font-size:10.5px;font-weight:800;letter-spacing:.02em}
.dlitem b{display:block;color:var(--ink);font-size:14.5px}
.dlitem span{font-size:12.5px;color:var(--muted)}

/* ═══ cart ═══ */
.cart{display:grid;grid-template-columns:1fr 350px;gap:36px;align-items:start;padding-top:28px;padding-bottom:64px}
.citem{display:flex;gap:16px;border:1px solid var(--line);border-radius:12px;padding:16px;margin-bottom:12px}
.citem > .ph{width:92px;height:92px;flex:none;border-radius:10px;font-size:0;padding:0}
.cmain{flex:1;min-width:0}
.cmain h4{margin-bottom:5px}
.cmain .spec{font-size:13.5px;color:var(--muted);line-height:1.65}
.cact{display:flex;gap:16px;margin-top:10px;font-size:13.5px;font-weight:700}
.cact a{color:var(--blue)}
.cact a:hover{color:var(--blue-dark)}
.cprice{text-align:right;font-weight:800;color:var(--ink);white-space:nowrap;font-size:17px}
.cprice small{display:block;font-size:12.5px;font-weight:600;color:var(--muted);margin-top:4px}
.qty{display:inline-flex;align-items:center;border:2px solid var(--line);border-radius:8px;overflow:hidden;margin-top:10px}
.qty button{border:0;background:#fff;width:32px;height:34px;font-size:16px;font-weight:700;color:var(--ink);cursor:pointer;font-family:inherit;line-height:1}
.qty button:hover{background:var(--blue-tint)}
.qty input{width:52px;height:34px;border:0;border-left:1px solid var(--line);border-right:1px solid var(--line);text-align:center;font-family:inherit;font-size:14px;font-weight:700;color:var(--ink);border-radius:0;padding:0}
.qty input:focus{outline:none;background:var(--blue-tint-2)}
.summary{border:1px solid var(--line);border-radius:14px;padding:22px;position:sticky;top:var(--stick)}
.summary h3{font-size:18px;margin-bottom:16px}
.summary .row{display:flex;justify-content:space-between;gap:12px;font-size:14.5px;padding:6px 0}
.summary .row b{color:var(--ink);font-weight:700}
.summary .tot{border-top:1px solid var(--line);margin-top:12px;padding-top:16px;font-size:16px;align-items:baseline}
.summary .tot b{font-size:27px;font-weight:800;letter-spacing:-.02em;line-height:1}
.summary .btn{margin-top:18px}
.summary .fine{font-size:12.5px;color:var(--muted);margin-top:14px;line-height:1.6}
.promo{display:flex;gap:8px;margin-top:16px}
.promo input{flex:1}
/* ═══ account area ═══ */
.acct-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap;margin-bottom:22px}
.acct-head h1{font-size:clamp(26px,3vw,36px)}
.acct-head p{color:var(--muted);font-size:15px;margin-top:6px}

/* Status vocabulary mirrors the ERP's states so the mapping stays visible in
   one place: Proof Sent -> proof, Approved/In Production -> prod, Shipped -> ship. */
.st-open{background:#EEF1F6;color:#4B5568}
.st-cancel{background:#FBE9E9;color:#9B2226}
.st-inv{background:#F0ECFB;color:#4B3A8F}

.filterbar{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin-bottom:18px}
.filterbar input[type=search]{flex:1;min-width:180px;max-width:320px}
.filterbar .chips label{font-size:13px;padding:7px 13px}

.proofcard{display:flex;gap:18px;border:1px solid var(--line);border-radius:14px;padding:16px;margin-bottom:14px;flex-wrap:wrap}
.proofcard .ph{width:150px;height:112px;flex:none;border-radius:10px;font-size:11px}
.proofcard .pmain{flex:1;min-width:220px}
.proofcard h4{margin-bottom:4px}
.proofcard .meta{font-size:13.5px;color:var(--muted);line-height:1.6}
.proofcard .acts{display:flex;gap:9px;flex-wrap:wrap;margin-top:13px}
.due{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;font-weight:800;padding:5px 11px;border-radius:14px;background:var(--amber-tint);color:#9C4400;margin-top:8px}
.due.soon{background:#FBE9E9;color:#9B2226}
.due.done{background:#E7F6EC;color:#186A35}

.cardgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.minicard{border:1px solid var(--line);border-radius:13px;padding:16px;position:relative;transition:.15s}
.minicard:hover{border-color:var(--blue)}
.minicard h4{margin-bottom:5px}
.minicard .meta{font-size:13px;color:var(--muted);line-height:1.6}
.minicard .acts{display:flex;gap:8px;flex-wrap:wrap;margin-top:13px}
.badge-def{position:absolute;top:14px;right:14px;font-size:10.5px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;background:var(--blue-tint);color:var(--blue-dark);padding:3px 9px;border-radius:10px}

.setrow{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;padding:16px 0;border-bottom:1px solid var(--line);flex-wrap:wrap}
.setrow:last-child{border-bottom:0}
.setrow .lft{flex:1;min-width:240px}
.setrow b{display:block;color:var(--ink);font-size:15px;margin-bottom:3px}
.setrow span{font-size:13.5px;color:var(--muted);line-height:1.55}
.switch{position:relative;width:46px;height:26px;flex:none}
.switch input{position:absolute;opacity:0;width:0;height:0}
.switch i{position:absolute;inset:0;background:var(--line);border-radius:20px;transition:.18s;cursor:pointer;display:block}
.switch i::after{content:"";position:absolute;top:3px;left:3px;width:20px;height:20px;background:#fff;border-radius:50%;transition:.18s;box-shadow:0 1px 3px rgba(0,0,0,.25)}
.switch input:checked + i{background:var(--blue)}
.switch input:checked + i::after{transform:translateX(20px)}
.switch input:focus-visible + i{outline:2px solid var(--blue);outline-offset:2px}

.usertable{width:100%;border-collapse:collapse;font-size:14px}
.usertable th{text-align:left;font-size:12px;font-weight:800;color:var(--muted);text-transform:uppercase;letter-spacing:.04em;padding:0 12px 10px 0;border-bottom:1px solid var(--line)}
.usertable td{padding:13px 12px 13px 0;border-bottom:1px solid var(--line)}
.usertable td:first-child{color:var(--ink);font-weight:700}

@media (max-width:900px){
  .cardgrid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .cardgrid{grid-template-columns:1fr}
  .proofcard .ph{width:100%;height:150px}
}

/* ═══ checkout ═══ */
.costeps{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:26px;font-size:13px;font-weight:700;color:var(--muted)}
.costeps span{display:flex;align-items:center;gap:7px}
.costeps span::after{content:"›";margin-left:8px;color:var(--line)}
.costeps span:last-child::after{content:""}
.costeps .on{color:var(--blue-dark)}
.costeps b{width:21px;height:21px;border-radius:50%;background:var(--line);color:#fff;display:flex;align-items:center;justify-content:center;font-size:11px}
.costeps .on b{background:var(--blue)}
.cobox{border:1px solid var(--line);border-radius:14px;padding:24px;margin-bottom:18px}
.cobox > h3{font-size:17px;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--line)}
.corev{display:flex;gap:12px;padding:11px 0;border-bottom:1px solid var(--line);font-size:14px}
.corev:last-child{border-bottom:0}
.corev .n{flex:1;min-width:0}
.corev .n b{display:block;color:var(--ink)}
.corev .n span{font-size:12.5px;color:var(--muted);line-height:1.5}
.corev .p{font-weight:700;color:var(--ink);white-space:nowrap}
.payhold{background:var(--amber-tint);border:1px dashed var(--amber);border-radius:12px;padding:20px;text-align:center;color:#7A3600;font-size:14px}
.payhold b{display:block;color:#7A3600;font-size:15px;margin-bottom:5px}
.payload{background:#0E1320;color:#9FE8B4;font-size:12px;line-height:1.55;padding:18px;border-radius:12px;overflow-x:auto;max-height:460px;margin:0}

.empty{border:1px dashed #C2D2F5;border-radius:14px;padding:52px 24px;text-align:center;background:var(--blue-tint-2)}
.empty h3{margin-bottom:8px}
.empty p{font-size:15px;margin-bottom:20px}

@media (max-width:1000px){
  .prod{grid-template-columns:1fr;gap:32px}
  .prod-visual{position:static}
  .dash{grid-template-columns:1fr;gap:24px}
  .dashnav{position:static;display:flex;gap:6px;overflow-x:auto}
  .tiles{grid-template-columns:repeat(2,1fr)}
  .artgrid{grid-template-columns:repeat(4,1fr)}
  .side-notes{grid-template-columns:1fr}
  .doc{grid-template-columns:1fr;gap:26px}
  .doc-nav{position:static;display:flex;gap:16px;overflow-x:auto;overflow-y:visible;max-height:none;border-left:0;border-bottom:1px solid var(--line);padding:0 0 12px}
  .doc-nav b{display:none}
  .doc-nav a{white-space:nowrap;padding:0}
  .cart{grid-template-columns:1fr;gap:26px}
  .summary{position:static}
}
@media (max-width:680px){
  .row2,.row3{grid-template-columns:1fr}
  .tiles{grid-template-columns:1fr 1fr}
  .artgrid{grid-template-columns:repeat(3,1fr)}
  .formcard{padding:22px 18px}
  .orow{flex-wrap:wrap}
  .dl{grid-template-columns:1fr}
  .citem{flex-wrap:wrap}
  .cprice{text-align:left}
  .qtiles{grid-template-columns:repeat(3,1fr);gap:10px}
  .dims{flex-wrap:wrap}
  .dims .ft{width:100%;text-align:left;min-width:0}
}
