@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');
/* ============================================================================
   Boococks × EUX — Case Study stylesheet
   EUX portfolio structure, re-themed to a butcher palette: forest green + cream.
   Display serif (Cormorant) for editorial warmth; Plus Jakarta for UI labels;
   Open Sans for body. Three page variations theme via a body class.
   ============================================================================ */



.bcx-case {
  /* Butcher palette */
  --cream:        #F6EFE2;   /* warm butcher-paper */
  --cream-50:     #FBF6EC;
  --cream-100:    #F2E9D8;
  --cream-200:    #E9DCC4;
  --paper:        #FFFDF8;   /* card paper */
  --ink:          #20231C;   /* near-black olive ink */
  --ink-900:      #181A14;
  --ink-800:      #2B2E24;
  --ink-700:      #41463A;
  --ink-600:      #5A6150;
  --ink-500:      #767D69;
  --ink-400:      #9A9F8C;
  --ink-300:      #BFC2B0;
  --ink-200:      #DCDCC9;
  --ink-100:      #E9E6D6;

  /* Forest / olive butcher greens */
  --forest:       #5E6B3B;   /* primary brand green (buttons) */
  --forest-600:   #515D33;
  --forest-700:   #44502B;
  --forest-800:   #333B20;
  --forest-900:   #232818;   /* footer / dark sections */
  --forest-050:   #EEF0E2;
  --forest-100:   #E1E5CE;
  --moss:         #7C8852;

  /* Warm accents */
  --rust:         #9E3B23;   /* meat / sale red, used sparingly */
  --rust-soft:    #C25A3C;
  --gold:         #B7892F;   /* est. 1923 brass */
  --woo:          #720EEC;   /* WooCommerce purple — tech accent */
  --woo-50:       #F1E3FE;
  --atria:        #2A6FDB;   /* ATRIA / POS data accent (blue) */
  --atria-50:     #E4EEFC;
  --ok:           #4F7B3A;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;
  --font-mono:    ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(35,40,24,0.05), 0 10px 30px rgba(35,40,24,0.06);
  --shadow-2: 0 2px 6px rgba(35,40,24,0.07), 0 24px 60px rgba(35,40,24,0.12);
  --shadow-3: 0 40px 90px rgba(20,23,18,0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --header-h: 0px; /* Salient provides the site header */
}

.bcx-case *, .bcx-case *::before, .bcx-case *::after { box-sizing: border-box; }
.bcx-case { scroll-behavior: smooth; }
.bcx-case {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.bcx-case img { max-width: 100%; display: block; }
.bcx-case ::selection { background: var(--forest); color: #fff; }

.bcx-case .wrap { max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
@media (min-width: 800px) { .bcx-case .wrap { padding-inline: 56px; } }
.bcx-case .section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.bcx-case .section--paper { background: var(--paper); }
.bcx-case .section--cream { background: var(--cream); }
.bcx-case .section--ink { background: var(--forest-900); color: var(--cream); }
.bcx-case .section--tight { padding-block: clamp(56px, 6vw, 88px); }

/* Eyebrow */
.bcx-case .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest);
}
.bcx-case .eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: 0.6; }
.bcx-case .eyebrow--plain::before { display: none; }
.bcx-case .section--ink .eyebrow { color: var(--moss); }

/* Headings */
.bcx-case h1, .bcx-case h2, .bcx-case h3, .bcx-case h4 { margin: 0; font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.04; }
.bcx-case .display { font-size: clamp(44px, 6.6vw, 92px); line-height: 0.98; letter-spacing: -0.015em; }
.bcx-case .h2 { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.03; }
.bcx-case .h3 { font-size: clamp(24px, 2.6vw, 34px); }
.bcx-case .serif-em { font-style: italic; color: var(--forest); }
.bcx-case .section--ink .serif-em { color: var(--moss); }
.bcx-case .lede { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; color: var(--ink-700); font-weight: 400; }
.bcx-case .section--ink .lede { color: var(--cream-100); }
.bcx-case p { margin: 0; color: var(--ink-700); }
.bcx-case .section--ink p { color: var(--cream-200); }

/* Buttons */
.bcx-case .btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-ui); font-weight: 600; font-size: 14px;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  text-decoration: none; transition: all .2s var(--ease); white-space: nowrap;
}
.bcx-case .btn svg { width: 17px; height: 17px; }
.bcx-case .btn--primary { background: var(--forest); color: #fff; }
.bcx-case .btn--primary:hover { background: var(--forest-700); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.bcx-case .btn--dark { background: var(--ink-900); color: var(--cream); }
.bcx-case .btn--dark:hover { background: #000; transform: translateY(-2px); }
.bcx-case .btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink-300); }
.bcx-case .btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.bcx-case .section--ink .btn--ghost { color: var(--cream); border-color: rgba(246,239,226,0.3); }
.bcx-case .section--ink .btn--ghost:hover { background: var(--cream); color: var(--ink-900); }
.bcx-case .btn--lg { padding: 18px 34px; font-size: 15px; }

/* ============================ HEADER ===================================== */
.bcx-case .hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 80; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(246,239,226,0.82); backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s;
}
.bcx-case .hdr.is-scrolled { border-bottom-color: var(--ink-100); }
.bcx-case .hdr__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.bcx-case .brand { display: inline-flex; align-items: baseline; gap: 2px; text-decoration: none; }
.bcx-case .brand__mark { font-family: var(--font-ui); font-weight: 700; font-size: 22px; letter-spacing: -0.04em; color: var(--ink-900); }
.bcx-case .brand__mark .dot { color: var(--forest); }
.bcx-case .hdr__nav { display: none; gap: 30px; }
@media (min-width: 900px) { .bcx-case .hdr__nav { display: flex; } }
.bcx-case .hdr__link { font-family: var(--font-ui); font-weight: 500; font-size: 14px; color: var(--ink-700); text-decoration: none; transition: color .15s; }
.bcx-case .hdr__link:hover, .bcx-case .hdr__link.is-here { color: var(--forest); }
.bcx-case .hdr__right { display: flex; align-items: center; gap: 16px; }
.bcx-case .hdr__crumb { display: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-500); }
@media (min-width: 1080px) { .bcx-case .hdr__crumb { display: inline; } }

/* ============================ HERO shell ================================= */
.bcx-case .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 0; position: relative; overflow: hidden; }
.bcx-case .hero__crumbs {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-500);
}
.bcx-case .hero__crumbs a { color: var(--ink-500); text-decoration: none; }
.bcx-case .hero__crumbs a:hover { color: var(--forest); }
.bcx-case .hero__crumbs .here { color: var(--forest); }
.bcx-case .hero__crumbs .sep { opacity: 0.4; }

/* Project meta chips */
.bcx-case .meta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.bcx-case .chip {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: var(--r-pill); background: var(--forest-050);
  color: var(--forest-700); border: 1px solid var(--forest-100);
}
.bcx-case .section--ink .chip { background: rgba(124,136,82,0.16); color: var(--cream-100); border-color: rgba(124,136,82,0.3); }
.bcx-case .chip--woo { background: var(--woo-50); color: var(--woo); border-color: #E0C4FD; }
.bcx-case .chip--atria { background: var(--atria-50); color: var(--atria); border-color: #C3DAFB; }

/* ===================== SNAPSHOT (fact table) ============================= */
.bcx-case .snap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--ink-100);
  border: 1px solid var(--ink-100); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 720px) { .bcx-case .snap { grid-template-columns: repeat(3, 1fr); } }
.bcx-case .snap__cell { background: var(--paper); padding: 22px 22px; }
.bcx-case .snap__k { font-family: var(--font-ui); font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500); }
.bcx-case .snap__v { font-family: var(--font-serif); font-size: 23px; color: var(--ink-900); margin-top: 6px; line-height: 1.15; }

/* ===================== STAT band ======================================== */
.bcx-case .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
@media (min-width: 820px) { .bcx-case .stats { grid-template-columns: repeat(4, 1fr); } }
.bcx-case .stat__n { font-family: var(--font-serif); font-weight: 500; font-size: clamp(54px, 6.5vw, 92px); line-height: 0.92; letter-spacing: -0.02em; color: var(--ink-900); }
.bcx-case .section--ink .stat__n { color: var(--cream); }
.bcx-case .stat__n .u { color: var(--forest); font-size: 0.5em; }
.bcx-case .section--ink .stat__n .u { color: var(--moss); }
.bcx-case .stat__l { font-family: var(--font-ui); font-size: 13px; line-height: 1.5; color: var(--ink-600); margin-top: 12px; max-width: 22ch; }
.bcx-case .section--ink .stat__l { color: var(--cream-200); }
.bcx-case .stat--rule { padding-left: 24px; border-left: 1px solid var(--ink-100); }
.bcx-case .section--ink .stat--rule { border-left-color: rgba(246,239,226,0.16); }

/* ===================== Section header =================================== */
.bcx-case .sec-hd { max-width: 760px; margin-bottom: 52px; }
.bcx-case .sec-hd .eyebrow { margin-bottom: 20px; }
.bcx-case .sec-hd__t { margin-bottom: 18px; }
.bcx-case .sec-hd--center { margin-inline: auto; text-align: center; }
.bcx-case .sec-hd--center .eyebrow { justify-content: center; }

/* ===================== Two-col copy/visual ============================== */
.bcx-case .split { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
@media (min-width: 940px) { .bcx-case .split { grid-template-columns: 1.05fr 1fr; } .bcx-case .split--rev > .split__visual { order: -1; } }
.bcx-case .split__copy .eyebrow { margin-bottom: 20px; }
.bcx-case .split__copy h2 { margin-bottom: 22px; }
.bcx-case .prose p + p { margin-top: 18px; }

/* ===================== Checklist (deliverables) ========================= */
.bcx-case .deliv { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--ink-100); }
@media (min-width: 680px) { .bcx-case .deliv { grid-template-columns: 1fr 1fr; column-gap: 48px; } }
.bcx-case .deliv__item {
  display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start;
  padding: 17px 4px; border-bottom: 1px solid var(--ink-100);
  font-family: var(--font-ui); font-weight: 500; font-size: 15px; color: var(--ink-800);
}
.bcx-case .deliv__item .tick {
  width: 24px; height: 24px; border-radius: var(--r-pill); background: var(--forest-050);
  color: var(--forest); display: grid; place-items: center; margin-top: 1px;
}
.bcx-case .deliv__item .tick svg { width: 13px; height: 13px; }
.bcx-case .section--ink .deliv, .bcx-case .section--ink .deliv__item { border-color: rgba(246,239,226,0.14); }
.bcx-case .section--ink .deliv__item { color: var(--cream-100); }
.bcx-case .section--ink .deliv__item .tick { background: rgba(124,136,82,0.2); color: var(--moss); }

/* ===================== Generic card ==================================== */
.bcx-case .card { background: var(--paper); border: 1px solid var(--ink-100); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-1); }
.bcx-case .card__icn { width: 46px; height: 46px; border-radius: 13px; background: var(--forest-050); color: var(--forest); display: grid; place-items: center; margin-bottom: 18px; }
.bcx-case .card__icn svg { width: 22px; height: 22px; }
.bcx-case .card h4 { font-size: 22px; margin-bottom: 10px; }
.bcx-case .card p { font-size: 14.5px; color: var(--ink-600); }
.bcx-case .grid-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .bcx-case .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .bcx-case .grid-3 { grid-template-columns: repeat(3,1fr); } }

/* ===================== Services pills =================================== */
.bcx-case .svc-list { display: flex; flex-wrap: wrap; gap: 12px; }
.bcx-case .svc-pill {
  font-family: var(--font-ui); font-weight: 500; font-size: 15px; color: var(--ink-800);
  padding: 12px 20px; border: 1px solid var(--ink-200); border-radius: var(--r-pill);
  background: var(--paper); transition: all .2s var(--ease);
}
.bcx-case .svc-pill:hover { border-color: var(--forest); color: var(--forest-700); transform: translateY(-2px); }
.bcx-case .section--ink .svc-pill { background: transparent; border-color: rgba(246,239,226,0.2); color: var(--cream-100); }
.bcx-case .section--ink .svc-pill:hover { border-color: var(--moss); color: #fff; }

/* ===================== Closing CTA / Footer ============================= */
.bcx-case .closer { display: grid; gap: 28px; }
.bcx-case .closer__t { font-family: var(--font-serif); font-weight: 500; font-size: clamp(38px, 5.5vw, 76px); line-height: 1.0; letter-spacing: -0.015em; color: var(--cream); max-width: 16ch; }
.bcx-case .closer__sub { color: var(--cream-200); font-size: 18px; max-width: 50ch; }

.bcx-case .ftr { background: var(--forest-900); color: var(--cream); padding: 60px 0 34px; }
.bcx-case .ftr__grid { display: grid; grid-template-columns: 1.6fr repeat(2, 1fr); gap: 36px; }
@media (max-width: 720px) { .bcx-case .ftr__grid { grid-template-columns: 1fr 1fr; } }
.bcx-case .ftr__brand { font-family: var(--font-ui); font-weight: 700; font-size: 30px; letter-spacing: -0.04em; color: var(--cream); }
.bcx-case .ftr__brand .dot { color: var(--moss); }
.bcx-case .ftr__tag { font-size: 14px; color: var(--cream-200); margin-top: 12px; max-width: 36ch; }
.bcx-case .ftr h6 { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); margin: 0 0 16px; }
.bcx-case .ftr ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.bcx-case .ftr a { font-family: var(--font-ui); font-size: 14px; color: var(--cream-200); text-decoration: none; }
.bcx-case .ftr a:hover { color: #fff; }
.bcx-case .ftr__legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 30px; margin-top: 44px; border-top: 1px solid rgba(246,239,226,0.14); font-family: var(--font-ui); font-size: 12.5px; color: rgba(246,239,226,0.55); }

/* ============================================================================
   DEVICE MOCKUPS
   ============================================================================ */
/* Browser / laptop frame */
.bcx-case .browser { border-radius: 14px; overflow: hidden; background: var(--paper); border: 1px solid var(--ink-200); box-shadow: var(--shadow-3); }
.bcx-case .browser__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--cream-100); border-bottom: 1px solid var(--ink-100); }
.bcx-case .browser__dots { display: flex; gap: 6px; }
.bcx-case .browser__dots i { width: 11px; height: 11px; border-radius: 99px; background: var(--ink-200); }
.bcx-case .browser__dots i:nth-child(1) { background:#E5897A; } .bcx-case .browser__dots i:nth-child(2) { background:#E8C06A; } .bcx-case .browser__dots i:nth-child(3) { background:#8FB07A; }
.bcx-case .browser__url { flex: 1; margin-left: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-600); background: var(--paper); border: 1px solid var(--ink-100); padding: 6px 14px; border-radius: 99px; display: flex; align-items: center; gap: 7px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.bcx-case .browser__url svg { width: 11px; height: 11px; color: var(--forest); flex-shrink: 0; }
.bcx-case .browser__url b { color: var(--ink-900); font-weight: 600; }
.bcx-case .browser__view { overflow: hidden; background: #111; }
.bcx-case .browser__view img { width: 100%; display: block; }
/* scrolling screenshot */
.bcx-case .shot-scroll { position: relative; overflow: hidden; }
.bcx-case .shot-scroll img { width: 100%; transition: transform 6s linear; }
.bcx-case .shot-scroll:hover img { /* JS-driven instead */ }

/* Laptop body */
.bcx-case .laptop { width: 100%; }
.bcx-case .laptop__screen { background: #11130E; border: 9px solid #14160F; border-radius: 16px 16px 0 0; box-shadow: var(--shadow-3); overflow: hidden; }
.bcx-case .laptop__screen .browser { border-radius: 0; box-shadow: none; border: 0; }
.bcx-case .laptop__base { height: 16px; background: linear-gradient(#1b1d15, #0d0f0a); border-radius: 0 0 5px 5px; position: relative; margin: 0 auto; width: 112%; max-width: 112%; transform: translateX(-5.3%); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
.bcx-case .laptop__base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16%; height: 6px; background: #050603; border-radius: 0 0 8px 8px; }

/* Phone frame */
.bcx-case .phone {
  width: 290px; max-width: 100%; aspect-ratio: 290 / 600; position: relative;
  background: #14160F; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-3), inset 0 0 0 2px rgba(255,255,255,0.04);
}
.bcx-case .phone__scr { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--cream); position: relative; display: flex; flex-direction: column; }
.bcx-case .phone__notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #14160F; border-radius: 0 0 16px 16px; z-index: 30; }
.bcx-case .phone--lg { width: 320px; aspect-ratio: 320 / 660; }

/* Floating tag/callout used near devices */
.bcx-case .float-tag {
  position: absolute; z-index: 40; background: var(--paper); border: 1px solid var(--ink-100);
  border-radius: 13px; padding: 12px 15px; box-shadow: var(--shadow-2);
  font-family: var(--font-ui); display: flex; align-items: center; gap: 11px; max-width: 240px;
}
.bcx-case .float-tag__ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.bcx-case .float-tag__ic svg { width: 17px; height: 17px; }
.bcx-case .float-tag b { display: block; font-weight: 700; font-size: 13.5px; color: var(--ink-900); line-height: 1.2; }
.bcx-case .float-tag span { font-size: 11.5px; color: var(--ink-500); }

/* ============================================================================
   BOOCOCKS PHONE UI (interactive mock content)
   ============================================================================ */
.bcx-case .bc { font-family: var(--font-ui); height: 100%; display: flex; flex-direction: column; background: var(--cream); color: var(--ink); }
.bcx-case .bc__top { background: var(--forest-900); color: var(--cream); font-size: 9.5px; letter-spacing: 0.04em; text-align: center; padding: 7px 0 6px; font-weight: 500; }
.bcx-case .bc__nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 10px; background: var(--cream); }
.bcx-case .bc__logo { font-family: var(--font-serif); font-weight: 600; font-size: 15px; letter-spacing: 0.02em; line-height: 0.92; text-align: center; color: var(--ink-900); }
.bcx-case .bc__logo small { display: block; font-family: var(--font-ui); font-size: 6px; letter-spacing: 0.32em; color: var(--ink-500); font-weight: 600; }
.bcx-case .bc__navic { display: flex; gap: 14px; color: var(--ink-700); }
.bcx-case .bc__navic svg { width: 18px; height: 18px; }
.bcx-case .bc__body { flex: 1; overflow: hidden; position: relative; }
.bcx-case .bc__sec-title { font-family: var(--font-serif); font-size: 17px; color: var(--ink-900); }
.bcx-case .bc-cta { background: var(--forest); color: #fff; border: 0; border-radius: 9px; padding: 12px; font-family: var(--font-ui); font-weight: 600; font-size: 13px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; transition: background .15s; }
.bcx-case .bc-cta:hover { background: var(--forest-700); }
.bcx-case .bc-cta svg { width: 15px; height: 15px; }

/* ============================================================================
   STORE ROUTER (interactive): suburb -> store + fulfilment
   ============================================================================ */
.bcx-case .router { background: var(--paper); border: 1px solid var(--ink-100); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-1); }
.bcx-case .router__seg { display: inline-flex; background: var(--cream-100); border-radius: var(--r-pill); padding: 4px; gap: 4px; margin-bottom: 20px; }
.bcx-case .router__seg button { font-family: var(--font-ui); font-weight: 600; font-size: 13px; border: 0; background: transparent; color: var(--ink-600); padding: 9px 18px; border-radius: var(--r-pill); cursor: pointer; transition: all .2s var(--ease); }
.bcx-case .router__seg button.is-on { background: var(--paper); color: var(--forest-700); box-shadow: var(--shadow-1); }
.bcx-case .router__field { display: flex; gap: 10px; }
.bcx-case .router__input { flex: 1; font-family: var(--font-ui); font-size: 15px; padding: 14px 16px; border: 1.5px solid var(--ink-200); border-radius: 12px; background: var(--cream-50); color: var(--ink-900); }
.bcx-case .router__input:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px var(--forest-050); }
.bcx-case .router__sugg { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bcx-case .router__sugg button { font-family: var(--font-ui); font-size: 12.5px; font-weight: 500; padding: 7px 13px; border: 1px solid var(--ink-200); background: var(--paper); border-radius: var(--r-pill); cursor: pointer; color: var(--ink-700); transition: all .15s; }
.bcx-case .router__sugg button:hover { border-color: var(--forest); color: var(--forest-700); }
.bcx-case .router__result { margin-top: 22px; min-height: 132px; }
.bcx-case .route-card { border: 1px solid var(--ink-100); border-radius: var(--r-md); padding: 18px; background: var(--cream-50); display: grid; gap: 12px; animation: bcxRouteIn .4s var(--ease); }
@keyframes bcxRouteIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bcx-case .route-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bcx-case .route-store { display: flex; align-items: center; gap: 11px; }
.bcx-case .route-store__pin { width: 38px; height: 38px; border-radius: 10px; background: var(--forest); color: #fff; display: grid; place-items: center; }
.bcx-case .route-store__pin svg { width: 18px; height: 18px; }
.bcx-case .route-store b { font-family: var(--font-ui); font-weight: 700; font-size: 16px; color: var(--ink-900); }
.bcx-case .route-store span { font-size: 12px; color: var(--ink-500); }
.bcx-case .route-badge { font-family: var(--font-ui); font-weight: 600; font-size: 11px; letter-spacing: 0.04em; padding: 6px 11px; border-radius: var(--r-pill); }
.bcx-case .route-badge--ok { background: var(--forest-050); color: var(--forest-700); }
.bcx-case .route-badge--soon { background: #F6EAD3; color: var(--gold); }
.bcx-case .route-rows { display: grid; gap: 9px; }
.bcx-case .route-row { display: grid; grid-template-columns: 18px 1fr auto; gap: 11px; align-items: center; font-size: 13px; color: var(--ink-700); }
.bcx-case .route-row svg { width: 15px; height: 15px; color: var(--forest); }
.bcx-case .route-row b { font-weight: 600; color: var(--ink-900); }

/* ============================================================================
   ATRIA <-> WooCommerce SYNC DIAGRAM (interactive / animated)
   ============================================================================ */
.bcx-case .sync {
  background: linear-gradient(170deg, #20231C, #14160F);
  border-radius: var(--r-xl); padding: clamp(26px, 4vw, 48px);
  color: var(--cream); position: relative; overflow: hidden;
  border: 1px solid rgba(124,136,82,0.18);
}
.bcx-case .sync::before { content: ""; position: absolute; inset: 0; background:
   radial-gradient(700px 300px at 18% 0%, rgba(42,111,219,0.14), transparent 60%),
   radial-gradient(700px 320px at 84% 100%, rgba(114,14,236,0.14), transparent 60%);
   pointer-events: none; }
.bcx-case .sync__hd { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.bcx-case .sync__hd h3 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px); color: var(--cream); }
.bcx-case .sync__live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); }
.bcx-case .sync__live i { width: 7px; height: 7px; border-radius: 99px; background: #8FB07A; box-shadow: 0 0 0 0 rgba(143,176,122,0.6); animation: bcxPulse 1.8s infinite; }
@keyframes bcxPulse { 70% { box-shadow: 0 0 0 8px rgba(143,176,122,0); } 100% { box-shadow: 0 0 0 0 rgba(143,176,122,0); } }

.bcx-case .sync__stage { position: relative; display: grid; grid-template-columns: 1fr clamp(80px, 12vw, 200px) 1fr; align-items: stretch; gap: 0; }
@media (max-width: 760px) { .bcx-case .sync__stage { grid-template-columns: 1fr; gap: 18px; } }
.bcx-case .sync-node { background: rgba(246,239,226,0.05); border: 1px solid rgba(246,239,226,0.12); border-radius: var(--r-lg); padding: 22px; position: relative; z-index: 2; }
.bcx-case .sync-node__cap { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.bcx-case .sync-node__logo { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-family: var(--font-ui); font-weight: 800; font-size: 17px; flex-shrink: 0; }
.bcx-case .sync-node__logo--atria { background: var(--atria); color: #fff; }
.bcx-case .sync-node__logo--woo { background: var(--woo); color: #fff; }
.bcx-case .sync-node__nm { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--cream); line-height: 1.1; }
.bcx-case .sync-node__nm span { display: block; font-weight: 500; font-size: 11px; color: var(--ink-300); letter-spacing: 0.04em; }
.bcx-case .sync-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid rgba(246,239,226,0.08); font-family: var(--font-ui); font-size: 12.5px; color: var(--cream-200); }
.bcx-case .sync-row:first-of-type { border-top: 0; }
.bcx-case .sync-row .d { width: 7px; height: 7px; border-radius: 99px; background: var(--moss); flex-shrink: 0; transition: all .3s; }
.bcx-case .sync-row.is-hot .d { background: #fff; box-shadow: 0 0 10px var(--moss); transform: scale(1.5); }
.bcx-case .sync-row.is-hot { color: #fff; }
.bcx-case .sync-row .amt { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); }

/* center conduit */
.bcx-case .sync-mid { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
@media (max-width: 760px) { .bcx-case .sync-mid { flex-direction: row; } }
.bcx-case .sync-mid__pill { font-family: var(--font-ui); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-900); background: #fff; border: 1px solid #fff; padding: 7px 14px; border-radius: 99px; white-space: nowrap; box-shadow: 0 6px 18px rgba(0,0,0,0.28); }
/* animated flow track */
.bcx-case .sync-track { position: absolute; top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); background: rgba(246,239,226,0.12); overflow: visible; }
@media (max-width: 760px) { .bcx-case .sync-track { display: none; } }
.bcx-case .sync-packet { position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 99px; transform: translate(-50%, -50%); opacity: 0; }
.bcx-case .sync-packet--atria { background: var(--atria); box-shadow: 0 0 14px var(--atria); }
.bcx-case .sync-packet--woo { background: var(--woo); box-shadow: 0 0 14px var(--woo); }

.bcx-case .sync__legend { position: relative; display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(246,239,226,0.12); }
.bcx-case .sync__leg { display: flex; align-items: center; gap: 9px; font-family: var(--font-ui); font-size: 12.5px; color: var(--cream-200); }
.bcx-case .sync__leg i { width: 10px; height: 10px; border-radius: 3px; }
.bcx-case .sync__leg i.a { background: var(--atria); } .bcx-case .sync__leg i.w { background: var(--woo); }
.bcx-case .sync__steps { position: relative; display: grid; grid-template-columns: 1fr; gap: 2px; margin-top: 26px; }
@media (min-width: 720px) { .bcx-case .sync__steps { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.bcx-case .sync-step { padding: 16px 0; border-top: 2px solid rgba(246,239,226,0.12); transition: border-color .3s; }
.bcx-case .sync-step.is-on { border-color: var(--moss); }
.bcx-case .sync-step__n { font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); }
.bcx-case .sync-step.is-on .sync-step__n { color: var(--moss); }
.bcx-case .sync-step__t { font-family: var(--font-ui); font-weight: 600; font-size: 13.5px; color: var(--cream); margin-top: 5px; }
.bcx-case .sync-step__d { font-size: 12px; color: var(--ink-300); margin-top: 4px; line-height: 1.45; }

/* ============================================================================
   STAGE / process timeline
   ============================================================================ */
.bcx-case .timeline { display: grid; gap: 0; }
.bcx-case .tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 30px; padding: 26px 0; border-top: 1px solid var(--ink-100); }
@media (max-width: 640px) { .bcx-case .tl-item { grid-template-columns: 1fr; gap: 8px; } }
.bcx-case .tl-item:last-child { border-bottom: 1px solid var(--ink-100); }
.bcx-case .tl-phase { font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); }
.bcx-case .tl-phase span { display: block; font-family: var(--font-serif); font-size: 30px; color: var(--ink-200); font-weight: 500; letter-spacing: -0.02em; margin-top: 4px; }
.bcx-case .tl-body h4 { font-size: 23px; margin-bottom: 8px; }
.bcx-case .tl-body p { font-size: 15px; color: var(--ink-600); max-width: 62ch; }

/* store rollout list */
.bcx-case .rollout { display: grid; gap: 12px; }
.bcx-case .rollout__row { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 18px 20px; border: 1px solid var(--ink-100); border-radius: var(--r-md); background: var(--paper); }
.bcx-case .rollout__row.is-live { border-color: var(--forest); background: var(--forest-050); }
.bcx-case .rollout__dot { width: 12px; height: 12px; border-radius: 99px; background: var(--ink-200); }
.bcx-case .rollout__row.is-live .rollout__dot { background: var(--forest); box-shadow: 0 0 0 4px var(--forest-100); }
.bcx-case .rollout__nm { font-family: var(--font-serif); font-size: 22px; color: var(--ink-900); }
.bcx-case .rollout__loc { font-family: var(--font-ui); font-size: 12.5px; color: var(--ink-500); }
.bcx-case .rollout__status { font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; padding: 7px 14px; border-radius: var(--r-pill); }
.bcx-case .rollout__status--live { background: var(--forest); color: #fff; }
.bcx-case .rollout__status--soon { background: var(--cream-100); color: var(--ink-600); }

/* reveal on scroll */
.bcx-case .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.bcx-case .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .bcx-case .reveal { opacity: 1 !important; transform: none !important; } }

/* small utilities */
.bcx-case .mono { font-family: var(--font-mono); }
.bcx-case .u-center { text-align: center; }
.bcx-case .divider { height: 1px; background: var(--ink-100); border: 0; margin: 0; }
.bcx-case .kicker-num { font-family: var(--font-serif); font-size: 14px; color: var(--forest); font-weight: 600; }


/* ============================ inline page styles ============================ */

  /* ---- Variation A: Editorial Butcher — now with Direction C device-scene hero ---- */
  .bcx-case .hero-c { padding-top: calc(var(--header-h) + 52px); padding-bottom: 0; position: relative; overflow: hidden; background: var(--cream-50); }
  .bcx-case .hero-c__top { text-align: center; max-width: 880px; margin: 0 auto; }
  .bcx-case .hero-c h1 { margin: 20px 0 22px; }
  .bcx-case .hero-c__metabar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
  .bcx-case .hero-c__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

  /* device scene */
  .bcx-case .scene { position: relative; margin-top: clamp(40px, 5vw, 64px); min-height: 380px; }
  .bcx-case .scene__stage { position: relative; max-width: 1080px; margin: 0 auto; }
  .bcx-case .scene__glow { position: absolute; inset: -6% 8% -30% 8%; background: radial-gradient(50% 55% at 50% 35%, rgba(124,136,82,0.20), transparent 70%); filter: blur(10px); z-index: 0; }
  .bcx-case .scene__laptop { position: relative; z-index: 2; width: 74%; margin: 0 auto; }
  .bcx-case .scene__phone-l { position: absolute; z-index: 3; bottom: -34px; left: 0; width: 184px; }
  .bcx-case .scene__phone-r { position: absolute; z-index: 4; bottom: -52px; right: 0; width: 198px; }
  @media (max-width: 880px) { .bcx-case .scene__laptop { width: 100%; } .bcx-case .scene__phone-l { left: -10px; width: 134px; } .bcx-case .scene__phone-r { right: -10px; width: 142px; } }
  @media (max-width: 560px) { .bcx-case .scene__phone-l, .bcx-case .scene__phone-r { display: none; } }
  .bcx-case .scene__tag { position: absolute; z-index: 6; }
  .bcx-case .scene__tag--a { top: 6%; right: -2%; } .bcx-case .scene__tag--b { top: 44%; left: -4%; }
  @media (max-width: 1180px) { .bcx-case .scene__tag { display: none; } }

  /* ---- Testimonial band (Jaggards-style) ---- */
  .bcx-case .tmn { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  @media (max-width: 900px) { .bcx-case .tmn { grid-template-columns: 1fr; } }
  .bcx-case .tmn__left { background: var(--paper); padding: clamp(48px,6vw,96px) clamp(28px,5vw,84px); display: flex; flex-direction: column; justify-content: center; }
  .bcx-case .tmn__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-ui); font-weight: 700; font-size: clamp(20px,2.4vw,30px); letter-spacing: 0.18em; color: var(--gold); margin-bottom: 30px; }
  .bcx-case .tmn__eyebrow::before, .bcx-case .tmn__eyebrow::after { content: ""; width: 9px; height: 9px; border-radius: 99px; background: currentColor; }
  .bcx-case .tmn__eyebrow::after { width: 22px; height: 2px; border-radius: 2px; }
  .bcx-case .tmn__stats { display: flex; flex-wrap: wrap; gap: 30px 44px; margin-bottom: 30px; }
  .bcx-case .tmn__stat .n { font-family: var(--font-serif); font-weight: 500; font-size: clamp(38px,4.4vw,56px); line-height: 0.9; color: var(--ink-900); letter-spacing: -0.01em; }
  .bcx-case .tmn__stat .l { font-family: var(--font-ui); font-size: 13px; color: var(--ink-600); margin-top: 10px; }
  .bcx-case .tmn__quote { font-family: var(--font-serif); font-size: clamp(19px,1.9vw,24px); line-height: 1.5; color: var(--ink-800); margin: 0 0 26px; max-width: 46ch; }
  .bcx-case .tmn__attr { display: flex; align-items: center; gap: 13px; }
  .bcx-case .tmn__avatar { width: 46px; height: 46px; border-radius: 99px; object-fit: cover; border: 1px solid var(--ink-100); background: var(--cream-100); }
  .bcx-case .tmn__name { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--ink-900); }
  .bcx-case .tmn__role { font-family: var(--font-ui); font-size: 13px; color: var(--ink-500); }
  .bcx-case .tmn__right { background: var(--forest-900); position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; padding: 56px 28px; }
  .bcx-case .tmn__right::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 38%, rgba(124,136,82,0.22), transparent 70%); }
  .bcx-case .tmn__medallion { position: relative; width: clamp(220px,28vw,320px); aspect-ratio: 1; border-radius: 99px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); border: 3px solid rgba(183,137,47,0.55); }
  .bcx-case .tmn__medallion img { width: 100%; height: 100%; object-fit: cover; }
  .bcx-case .tmn__lockup { position: relative; text-align: center; margin-top: 34px; }
  .bcx-case .tmn__wordmark { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px,4vw,46px); line-height: 0.92; letter-spacing: 0.06em; color: var(--gold); }
  .bcx-case .tmn__est { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.34em; color: var(--cream-200); margin-top: 12px; }
  .bcx-case .tmn__est::before, .bcx-case .tmn__est::after { content: ""; width: 30px; height: 1px; background: rgba(183,137,47,0.6); }

  /* ---- screens gallery ---- */
  .bcx-case .scrn-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 760px) { .bcx-case .scrn-grid { grid-template-columns: 1fr 1fr; } }
  .bcx-case .scrn--wide { grid-column: 1 / -1; }
  .bcx-case .scrn-static { display: block; }
  .bcx-case .scrn .scrn-static img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: none; transform: none; }
  .bcx-case .scrn { border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(246,239,226,0.16); box-shadow: var(--shadow-3); background: var(--paper); }
  .bcx-case .scrn img { width: 100%; display: block; }
  .bcx-case .scrn__cap { display: flex; align-items: baseline; gap: 12px; padding: 15px 20px;
    background: var(--forest-900); border-top: 1px solid rgba(246,239,226,0.12);
    font-family: var(--font-ui); font-size: 14px; color: var(--cream-100); }
  .bcx-case .scrn__cap b { font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); }

  /* ---- pickup & delivery interactive widget ---- */
  .bcx-case .pud { background: var(--paper); border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow-1); overflow: hidden; }
  .bcx-case .pud__steps { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; justify-content: center; background: var(--ink-900); color: var(--cream); padding: 11px 16px; font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
  .bcx-case .pud__steps span { color: rgba(246,239,226,0.45); }
  .bcx-case .pud__steps span.is-on { color: #fff; font-weight: 700; }
  .bcx-case .pud__steps i { color: rgba(246,239,226,0.3); font-style: normal; }
  .bcx-case .pud__tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .bcx-case .pud__tab { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 16px 8px; cursor: pointer; border: 0; background: var(--paper); font-family: var(--font-ui); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; color: var(--ink-500); border-bottom: 2px solid var(--ink-100); transition: color .15s, border-color .15s; }
  .bcx-case .pud__tab svg { width: 26px; height: 26px; stroke-width: 1.6; }
  .bcx-case .pud__tab.is-on { color: var(--ink-900); border-bottom-color: var(--ink-900); }
  .bcx-case .pud__body { padding: 20px; }
  .bcx-case .pud__panel { display: none; }
  .bcx-case .pud__panel.is-on { display: block; }
  .bcx-case .pud__hd { font-family: var(--font-serif); font-size: 19px; color: var(--ink-900); margin-bottom: 12px; }
  .bcx-case .pud-field { display: flex; flex-direction: column; gap: 4px; }
  .bcx-case .pud-field label { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-500); }
  .bcx-case .pud-field input { font-family: var(--font-ui); font-size: 13px; padding: 9px 11px; border: 1px solid var(--ink-200); border-radius: 8px; background: var(--cream-50); color: var(--ink-900); }
  .bcx-case .pud-store { display: flex; gap: 11px; align-items: flex-start; padding: 13px; border: 1px solid var(--ink-200); border-radius: 10px; cursor: pointer; margin-bottom: 10px; transition: border-color .15s, background .15s; }
  .bcx-case .pud-store.is-on { border-color: var(--forest); background: var(--forest-050); }
  .bcx-case .pud-store__radio { width: 18px; height: 18px; border-radius: 99px; border: 1.5px solid var(--ink-300); margin-top: 2px; flex-shrink: 0; position: relative; }
  .bcx-case .pud-store.is-on .pud-store__radio { border-color: var(--forest); }
  .bcx-case .pud-store.is-on .pud-store__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 99px; background: var(--forest); }
  .bcx-case .pud-store b { font-family: var(--font-ui); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: var(--ink-900); }
  .bcx-case .pud-store span { display: block; font-size: 11px; color: var(--ink-500); margin-top: 3px; line-height: 1.4; }
  .bcx-case .pud-cal { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .bcx-case .pud-day { border: 1px solid var(--ink-200); border-radius: 10px; padding: 12px 3px; text-align: center; cursor: pointer; background: var(--paper); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 84px; transition: background .12s, border-color .12s; }
  .bcx-case .pud-day .dow { font-family: var(--font-ui); font-size: 8.5px; font-weight: 600; line-height: 1.15; opacity: 0.7; }
  .bcx-case .pud-day .d { font-family: var(--font-serif); font-size: 25px; font-weight: 600; line-height: 1; }
  .bcx-case .pud-day .mo { font-family: var(--font-ui); font-size: 9px; opacity: 0.7; }
  .bcx-case .pud-day.is-off { color: var(--ink-300); background: var(--cream-50); cursor: not-allowed; }
  .bcx-case .pud-day.is-on { background: var(--forest); color: #fff; border-color: var(--forest); }
  .bcx-case .pud-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .bcx-case .pud-slot { border: 1px solid var(--ink-200); border-radius: 8px; padding: 12px 4px; text-align: center; font-family: var(--font-ui); font-size: 11px; font-weight: 600; color: var(--ink-700); cursor: pointer; background: var(--paper); white-space: nowrap; transition: background .12s, border-color .12s; }
  .bcx-case .pud-slot.is-on { background: var(--forest); color: #fff; border-color: var(--forest); }
  .bcx-case .pud-sel { display: flex; align-items: center; gap: 9px; justify-content: center; min-height: 22px; margin: 14px 0; font-family: var(--font-serif); font-size: 16px; color: var(--ink-900); text-align: center; }
  .bcx-case .pud-sel svg { width: 18px; height: 18px; flex-shrink: 0; }
  .bcx-case .pud-opt { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--forest); background: var(--forest-050); border-radius: 9px; padding: 11px 14px; font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--ink-900); }
  .bcx-case .pud-opt .dot { display: inline-flex; align-items: center; gap: 9px; }
  .bcx-case .pud-opt .dot::before { content: ""; width: 12px; height: 12px; border-radius: 99px; border: 3px solid var(--forest); }
  .bcx-case .pud-continue { width: 100%; margin-top: 14px; background: var(--forest); color: #fff; border: 0; border-radius: 99px; padding: 13px; font-family: var(--font-ui); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background .15s; }
  .bcx-case .pud-continue:hover { background: var(--forest-700); }
  @keyframes bcxPudFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  .bcx-case .pud__panel.is-on { animation: bcxPudFade .36s var(--ease); }
  @keyframes bcxPudPulse { 0% { transform: scale(1); } 45% { transform: scale(1.07); } 100% { transform: scale(1); } }
  .bcx-case .pud-day.is-pulse, .bcx-case .pud-slot.is-pulse, .bcx-case .pud-store.is-pulse { animation: bcxPudPulse .5s var(--ease); position: relative; z-index: 1; }
  .bcx-case .pud-sel { transition: opacity .25s var(--ease); }

  /* ---- live ATRIA product cards ---- */
  .bcx-case .sync-shop { margin-top: 34px; }
  .bcx-case .sync-shop__hd { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
  .bcx-case .sync-shop__note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; color: var(--ink-500); }
  .bcx-case .sync-shop__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  @media (min-width: 820px) { .bcx-case .sync-shop__grid { grid-template-columns: repeat(4, 1fr); } }
  .bcx-case .scard { background: #fff; border: 1px solid var(--ink-100); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-1); position: relative; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
  .bcx-case .scard.is-updating { box-shadow: 0 0 0 2px var(--forest), var(--shadow-2); transform: translateY(-3px); }
  .bcx-case .scard__img { aspect-ratio: 1 / 1; background: #15170f center/cover no-repeat; position: relative; }
  .bcx-case .scard__plu { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; background: rgba(20,22,15,0.72); color: #fff; padding: 4px 9px; border-radius: 99px; }
  .bcx-case .scard__badge { position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-ui); font-weight: 700; font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; background: var(--forest); color: #fff; padding: 5px 9px; border-radius: 99px; opacity: 0; transform: translateY(-5px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
  .bcx-case .scard.is-updating .scard__badge { opacity: 1; transform: none; }
  .bcx-case .scard__body { padding: 15px 13px 17px; text-align: center; }
  .bcx-case .scard__title { font-family: var(--font-ui); font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.35; color: var(--ink-900); min-height: 50px; display: flex; align-items: center; justify-content: center; }
  .bcx-case .scard__price { font-family: var(--font-serif); font-weight: 600; font-size: 21px; color: var(--forest-700); margin-top: 10px; transition: color .2s var(--ease); }
  .bcx-case .scard__price small { font-family: var(--font-ui); font-weight: 500; font-size: 11px; color: var(--ink-500); }
  .bcx-case .scard.is-updating .scard__price { color: var(--forest); }
  .bcx-case .scard__stock { font-family: var(--font-ui); font-size: 11px; font-weight: 600; color: var(--forest); margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; }
  .bcx-case .scard__stock.is-sync { color: var(--gold); }

  /* card placed inside the ATRIA <> Woo flow */
  .bcx-case.var-a .sync__stage { display: flex; justify-content: center; align-items: flex-start; gap: clamp(22px, 4vw, 60px); padding-top: 80px; position: relative; }
  @media (max-width: 760px) { .bcx-case.var-a .sync__stage { flex-direction: column; align-items: center; gap: 28px; padding-top: 72px; } }
  .bcx-case.var-a .sync-node { flex: 0 0 348px; max-width: 348px; align-self: stretch; position: relative; z-index: 2; }
  .bcx-case .sync-card-col { flex: 0 0 223px; position: relative; z-index: 2; }
  .bcx-case .sync-arc { position: absolute; top: 0; left: 0; width: 100%; height: 88px; pointer-events: none; z-index: 1; }
  .bcx-case .sync-arc .arc { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 0.1 11; }
  .bcx-case .sync-arc .arc--a { stroke: var(--atria); animation: bcxArcFlow 1.1s linear infinite; }
  .bcx-case .sync-arc .arc--w { stroke: var(--woo); animation: bcxArcFlow 1.1s linear infinite; }
  @keyframes bcxArcFlow { to { stroke-dashoffset: -11.1; } }
  @media (prefers-reduced-motion: reduce) { .bcx-case .sync-arc .arc { animation: none; } }
  .bcx-case .sync-dot { filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)); }
  @media (prefers-reduced-motion: reduce) { .bcx-case .sync-dot { display: none; } }

  /* challenge mockup matches copy column height on desktop */
  @media (min-width: 940px) {
    .bcx-case .chal-split { align-items: stretch; }
    .bcx-case .chal-split .split__visual { display: flex; flex-direction: column; }
    .bcx-case .chal-browser { flex: 1; display: flex; flex-direction: column; }
    .bcx-case .chal-browser .browser__view { flex: 1; aspect-ratio: auto !important; min-height: 0; }
  }
  .bcx-case .sync-pill--top { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); z-index: 4; }
  .bcx-case .scard--mid { width: 223px; height: 414px; max-width: none; display: flex; flex-direction: column; box-shadow: 0 22px 55px rgba(0,0,0,0.45); }
  .bcx-case .scard--mid .scard__img { aspect-ratio: auto; height: 223px; flex: 0 0 auto; }
  .bcx-case .scard--mid .scard__body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; padding: 20px 18px; }
  .bcx-case .scard--mid .scard__title { font-size: 14px; min-height: auto; line-height: 1.42; }
  .bcx-case .scard--mid .scard__price { font-size: 23px; margin-top: 0; }
  .bcx-case .scard--mid .scard__stock { margin-top: 2px; }


/* ============================================================================
   WordPress / Salient coexistence layer
   ============================================================================ */

/* Full-bleed breakout - works whether the wrapper sits in a content container
   or directly between get_header()/get_footer(). */
.bcx-case {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: clip;
}
body:has(.bcx-case) { overflow-x: hidden; }

/* Salient adds border-bottom underlines to content links */
.bcx-case a,
.bcx-case a:hover { border-bottom: 0; box-shadow: none; }

/* Salient: img { height: auto !important } kills object-fit fills */
.bcx-case .tmn__medallion img,
.bcx-case .scrn .scrn-static img { height: 100% !important; max-height: none !important; }
.bcx-case .tmn__avatar { height: 46px !important; }

/* Salient: word-break: break-word on columns splits compound words */
.bcx-case h1, .bcx-case h2, .bcx-case h3, .bcx-case h4,
.bcx-case .display, .bcx-case .h2, .bcx-case .h3 {
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* Salient: body[data-button-style^="rounded"] button { border-radius: 200px !important } */
.bcx-case .pud__tab { border-radius: 0 !important; }
.bcx-case .pud-day,
.bcx-case .pud-slot { border-radius: 10px !important; }
.bcx-case button.btn,
.bcx-case .btn { border-radius: 999px !important; }

/* Neutralise theme button chrome on widget buttons */
.bcx-case button {
    background-image: none;
    text-transform: none;
    -webkit-appearance: none;
    appearance: none;
}
