/* cute-meme / bento-grid
   A bento box: a dark lacquer rim holding rounded pastel compartments. The whole page
   is ONE CSS grid (main.bn-box is also the engine's [data-wl-flow]): the hero's pieces
   are the first compartments (headline, art, ticker, calls to action, scene-1, a
   slogan) and every section the engine renders is one more compartment, sized by its
   kind and packed densely. No bands, no vertical story, no section chrome: each tile
   carries a small label chip and its content. Rounded sans, flat pastel fills, the rim
   as the only dark thing on the page. */

:root {
  --bn-rim: color-mix(in oklab, var(--wl-accent) 26%, #2b2230);
  --bn-rim-2: color-mix(in oklab, var(--wl-accent) 18%, #1d1720);
  --bn-page: color-mix(in oklab, var(--wl-accent) 7%, #f6f2ec);
  --bn-ink: #2a2230;
  --bn-ink-soft: #5b5061;
  --bn-p1: color-mix(in oklab, var(--wl-accent) 24%, #ffffff);
  --bn-p2: color-mix(in oklab, var(--wl-secondary) 30%, #ffffff);
  --bn-p3: color-mix(in oklab, #ffd36b 42%, #ffffff);
  --bn-p4: color-mix(in oklab, #9cc6ff 40%, #ffffff);
  --bn-p5: color-mix(in oklab, #c9a8ff 36%, #ffffff);
  --bn-p6: color-mix(in oklab, #9fe3bb 38%, #ffffff);
  --bn-gap: clamp(8px, 0.9vw, 12px);
  --bn-row: clamp(112px, 15.2vh, 136px);
  --bn-r: clamp(18px, 2vw, 28px);
  --bn-pad: clamp(16px, 1.9vw, 26px);
  --bn-top: 62px;
  --bn-round: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Nunito", "Varela Round", "Helvetica Neue", Arial, "Liberation Sans", sans-serif;

  --v-bg: var(--bn-page);
  --v-fg: var(--bn-ink);
  --v-soft: var(--bn-ink-soft);
  --v-faint: #8a7f8e;
  --v-line: rgb(42 34 48 / 0.1);
  --v-line-strong: rgb(42 34 48 / 0.22);
  --v-surface: rgb(255 255 255 / 0.55);
  --v-surface-2: rgb(255 255 255 / 0.8);
  --v-card-bg: rgb(255 255 255 / 0.6);
  --v-accent: var(--wl-accent);
  --v-accent-text: var(--wl-accent-on-light);
  --v-on-accent: var(--wl-on-accent);
  --v-secondary: var(--wl-secondary);
  --v-seg-1: var(--wl-accent);
  --v-seg-2: color-mix(in oklab, var(--wl-secondary) 85%, #000);
  --v-seg-3: #f2a93b;
  --v-seg-4: #5b9cf0;
  --v-seg-5: #9a6cf0;
  --v-seg-6: #bdb3c2;
  --v-font-body: var(--bn-round);
  --v-font-display: var(--bn-round);
  --v-font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --v-display-weight: 800;
  --v-display-tracking: -0.025em;
  --v-display-case: none;
  --v-display-lh: 1;
  --v-title-size: clamp(1.25rem, 1.7vw, 1.6rem);
  --v-body-size: 1rem;
  --v-radius: 16px;
  --v-radius-sm: 12px;
  --v-radius-lg: var(--bn-r);
  --v-border: 0;
  --v-shadow: none;
  --v-card-pad: 14px;
  --v-maxw: none;
  --v-pad-x: 0px;
  --v-sec-gap: 0px;
  --v-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --v-spring: cubic-bezier(0.3, 1.5, 0.5, 1);

  --wl-label-lore: "Story";
  --wl-label-features: "Traits";
  --wl-label-supply: "Supply";
  --wl-label-flow: "Steps";
  --wl-label-timeline: "Next";
  --wl-label-comparison: "Compare";
  --wl-label-stats: "Numbers";
  --wl-label-tweet: "Post";
  --wl-label-gallery: "Photos";
  --wl-label-facts: "Facts";
  --wl-label-quotes: "Fans";
  --wl-label-faq: "Q&A";
  --wl-label-access: "Contract";
}

html { background: var(--bn-page); color-scheme: light; }
body { background: var(--bn-page); color: var(--bn-ink); line-height: 1.5; }

/* ------------------------------------------------------------ top */
.bn-page { width: min(1320px, calc(100% - 2 * clamp(8px, 1.6vw, 22px))); margin: 0 auto; }
.bn-top { position: sticky; top: 0; z-index: 30; height: var(--bn-top); display: flex; align-items: center; gap: 16px; background: color-mix(in srgb, var(--bn-page) 88%, transparent); backdrop-filter: blur(10px); min-width: 0; }
.bn-brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; flex: 0 1 auto; text-decoration: none; }
.bn-brand__mark { width: 38px; height: 38px; border-radius: 12px; object-fit: cover; flex: none; }
.bn-brand__name { font: 800 1.2rem/1 var(--bn-round); letter-spacing: -0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.bn-top__nav { flex: 1 1 0; min-width: 0; display: flex; justify-content: safe center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.bn-top__nav::-webkit-scrollbar { display: none; }
.bn-top__nav .wl-nav__link { flex: none; padding: 7px 12px; border-radius: 999px; font: 700 0.86rem/1 var(--bn-round); text-decoration: none; color: var(--bn-ink-soft); white-space: nowrap; }
.bn-top__nav .wl-nav__link:hover, .bn-top__nav .wl-nav__link.is-active { background: var(--bn-p1); color: var(--bn-ink); }
.bn-top__get { flex: none; margin-left: auto; padding: 10px 16px; border-radius: 999px; background: var(--bn-rim); color: #fff; font: 800 0.9rem/1 var(--bn-round); text-decoration: none; }

/* ------------------------------------------------------------ the box */
.bn-box {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(var(--bn-row), auto);
  grid-auto-flow: row dense;
  gap: var(--bn-gap);
  padding: calc(var(--bn-gap) + 4px);
  background: linear-gradient(160deg, var(--bn-rim), var(--bn-rim-2));
  border-radius: calc(var(--bn-r) + var(--bn-gap) + 6px);
  box-shadow: inset 0 2px 0 rgb(255 255 255 / 0.12), inset 0 -3px 0 rgb(0 0 0 / 0.25), 0 30px 60px -30px rgb(40 20 40 / 0.55);
  margin-bottom: 26px;
}

/* every compartment */
.bn-tile, .bn-box > .wl-sec {
  position: relative; margin: 0; min-width: 0;
  padding: var(--bn-pad);
  border-radius: var(--bn-r);
  background: var(--bn-fill, var(--bn-p1));
  color: var(--bn-ink);
  box-shadow: inset 0 1.5px 0 rgb(255 255 255 / 0.6), inset 0 -2px 0 rgb(0 0 0 / 0.05);
  overflow: hidden;
}

/* the hero's compartments (explicit places; sections pack around them) */
.bn-tile--title { grid-column: 1 / span 2; grid-row: 1 / span 4; --bn-fill: var(--bn-p1); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.bn-tile--art { grid-column: 3 / span 4; grid-row: 1 / span 3; padding: 0; --bn-fill: var(--bn-p2); }
.bn-tile--tick { grid-column: 3 / span 1; grid-row: 4; --bn-fill: var(--bn-p3); display: grid; place-items: center; padding: 14px; }
.bn-tile--cta { grid-column: 4 / span 2; grid-row: 4; --bn-fill: #fff; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: center; gap: 8px; padding: 14px; }
.bn-tile--scene { grid-column: 6 / span 1; grid-row: 4; padding: 0; --bn-fill: var(--bn-p4); }
.bn-tile--slogan { grid-column: span 2; grid-row: span 2; --bn-fill: var(--bn-p6); display: grid; place-items: center; text-align: center; }
.bn-box:not(:has(.bn-tile--scene)) .bn-tile--cta { grid-column: 4 / span 3; }

.bn-chip, .bn-box > .wl-sec .wl-kicker {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  margin: 0; padding: 6px 11px; border-radius: 999px;
  background: rgb(255 255 255 / 0.72); color: var(--bn-ink);
  font: 800 0.72rem/1.2 var(--bn-round); letter-spacing: 0.06em; text-transform: uppercase;
}
.bn-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wl-accent); }
.bn-headline { margin: 0; font: 800 clamp(2.4rem, 4.6vw, 4.4rem)/0.98 var(--bn-round); letter-spacing: -0.04em; text-wrap: balance; overflow-wrap: break-word; }
.bn-headline .wl-w:last-child { color: var(--wl-accent-on-light); }
.bn-tile--title[data-bn-len="l"] .bn-headline { font-size: clamp(2rem, 3.6vw, 3.4rem); }
.bn-tile--title[data-bn-len="xl"] .bn-headline { font-size: clamp(1.7rem, 2.8vw, 2.7rem); }
.bn-sub { margin: 0; color: var(--bn-ink-soft); font-size: 1rem; line-height: 1.5; text-wrap: pretty; }
.bn-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.bn-tag { padding: 6px 10px; border-radius: 10px; background: rgb(255 255 255 / 0.6); font: 700 0.8rem/1.2 var(--bn-round); }
.bn-tag code { font-size: 0.78rem; }

.bn-art { position: absolute; inset: 0; }
.bn-art .wl-hero-img { width: 100%; height: 100%; object-fit: cover; }
.bn-art__cap { position: absolute; left: 14px; bottom: 14px; max-width: calc(100% - 28px); margin: 0; padding: 8px 14px; border-radius: 999px; background: rgb(255 255 255 / 0.86); backdrop-filter: blur(8px); font: 700 0.9rem/1.25 var(--bn-round); }

.bn-tick { display: block; width: 100%; text-align: center; font: 800 clamp(2rem, 3.6vw, 3.4rem)/1 var(--bn-round); letter-spacing: -0.04em; color: var(--bn-ink); overflow: hidden; }

.bn-tile--cta .wl-btn { justify-content: center; padding: 12px 10px; border: 0; border-radius: 14px; background: var(--bn-page); color: var(--bn-ink); font: 800 0.9rem/1.1 var(--bn-round); letter-spacing: 0; box-shadow: inset 0 -2px 0 rgb(0 0 0 / 0.08); }
.bn-tile--cta .wl-btn:hover { transform: translateY(-2px); border: 0; }
.bn-tile--cta .wl-btn--primary { grid-column: 1 / -1; background: var(--bn-rim); color: #fff; box-shadow: inset 0 -3px 0 rgb(0 0 0 / 0.3); }
.bn-tile--cta .wl-btn--primary:hover { box-shadow: inset 0 -3px 0 rgb(0 0 0 / 0.3); }
.bn-tile--cta .wl-btn__ca { opacity: 0.7; }

.bn-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bn-slogan { margin: 0; font: 800 clamp(1.8rem, 3.2vw, 3rem)/1 var(--bn-round); letter-spacing: -0.04em; text-wrap: balance; }
.bn-slogan::before { content: "\201C"; display: block; font-size: 1.6em; line-height: 0.6; color: var(--wl-accent-on-light); }

/* ------------------------------------------------------------ sections as compartments */
.bn-box > .wl-sec { display: flex; flex-direction: column; grid-column: span 3; grid-row: span 2; }
.bn-box > .wl-sec > .wl-sec__inner { max-width: none; width: 100%; margin: 0; display: flex; flex-direction: column; flex: 1; min-height: 0; }
.bn-box > .wl-sec .wl-sec__head { max-width: none; margin: 0 0 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; }
.bn-box > .wl-sec .wl-kicker .wl-ord { display: none; }
.bn-box > .wl-sec .wl-sec__title { font-size: var(--v-title-size); letter-spacing: -0.02em; line-height: 1.15; flex: 1 1 100%; }
.bn-box > .wl-sec .wl-sec__body { flex: 1; min-height: 0; }

/* sizes by kind (the grid packs them densely) and a pastel each */
.bn-box > .wl-sec--lore { grid-column: span 4; --bn-fill: var(--bn-p3); }
.bn-box > .wl-sec--features { grid-column: span 3; --bn-fill: var(--bn-p4); }
.bn-box > .wl-sec--gallery { grid-column: span 3; --bn-fill: var(--bn-p5); }
.bn-box > .wl-sec--infographic { grid-column: span 3; --bn-fill: var(--bn-p6); }
.bn-box > .wl-sec--quotes { grid-column: span 3; --bn-fill: var(--bn-p1); }
.bn-box > .wl-sec--facts { grid-column: span 2; --bn-fill: var(--bn-p2); }
.bn-box > .wl-sec--faq { grid-column: span 4; --bn-fill: #fff; }
.bn-box > .wl-sec--tweet { grid-column: span 2; --bn-fill: var(--bn-p4); }
.bn-box > .wl-sec--timeline { grid-column: span 3; --bn-fill: var(--bn-p5); }
.bn-box > .wl-sec--access { grid-column: span 6; grid-row: span 1; --bn-fill: var(--bn-rim-2); color: #fff; }

/* story */
.bn-box .wl-lore { max-width: none; }
.bn-box .wl-lore__lead { font: 700 1.12rem/1.45 var(--bn-round); margin: 0 0 0.7em; }
.bn-box .wl-lore__p { margin: 0; font-size: 0.96rem; color: var(--bn-ink-soft); max-width: none; }

/* traits: a bento inside the bento */
.bn-box .wl-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: 8px; height: 100%; }
.bn-box .wl-feature { display: flex; flex-direction: column; gap: 6px; padding: 12px; border: 0; border-radius: 16px; background: rgb(255 255 255 / 0.66); }
.bn-box .wl-feature:hover { transform: translateY(-2px); }
.bn-box .wl-feature__icon { width: 44px; height: 44px; margin: 0 0 4px; border-radius: 13px; background: #fff; }
.bn-box .wl-feature__icon .wl-glyph { width: 22px; height: 22px; }
.bn-box .wl-feature .wl-ord { display: none; }
.bn-box .wl-feature__title { margin: 0; font: 800 1rem/1.2 var(--bn-round); }
.bn-box .wl-feature__text { margin: 0; font-size: 0.86rem; line-height: 1.4; color: var(--bn-ink-soft); }

/* photos: a mosaic filling the tile */
.bn-box .wl-gallery { display: grid; grid-template-columns: 1.4fr 1fr; grid-auto-rows: 1fr; gap: 8px; height: 100%; min-height: 220px; }
.bn-box .wl-gallery[data-count="1"] { grid-template-columns: 1fr; }
.bn-box .wl-gallery[data-count="2"] { grid-template-columns: 1fr 1fr; }
.bn-box .wl-gallery[data-count="3"] .wl-shot:first-child { grid-row: span 2; grid-column: auto; }
.bn-box .wl-shot { border-radius: 14px; }
.bn-box .wl-shot img { height: 100%; aspect-ratio: auto; }
.bn-box .wl-shot__caption { left: 8px; right: auto; bottom: 8px; max-width: calc(100% - 16px); padding: 4px 10px; border-radius: 999px; background: rgb(255 255 255 / 0.86); color: var(--bn-ink); font: 700 0.76rem/1.3 var(--bn-round); backdrop-filter: blur(6px); }

/* supply */
.bn-box .wl-infographic { gap: 12px; height: 100%; align-content: center; }
.bn-box .wl-graphic--supply { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 16px; }
.bn-box .wl-donut { display: contents; }
.bn-box .wl-donut__chart { width: 100%; max-width: 210px; justify-self: center; }
.bn-box .wl-donut__ticks { display: none; }
.bn-box .wl-donut__track { stroke: rgb(255 255 255 / 0.7); stroke-width: 34; }
.bn-box .wl-donut__seg { stroke-width: 34; stroke-linecap: round; }
.bn-box .wl-donut__value { font: 800 1.05rem/1 var(--bn-round); }
.bn-box .wl-donut__label { font: 700 0.58rem/1.2 var(--bn-round); color: var(--bn-ink-soft); }
.bn-box .wl-legend { width: 100%; gap: 6px; align-self: center; }
.bn-box .wl-legend__item { padding: 8px 10px; border: 0; border-radius: 12px; background: rgb(255 255 255 / 0.66); font: 700 0.9rem/1.2 var(--bn-round); }
.bn-box .wl-legend__swatch { border-radius: 50%; }
.bn-box .wl-legend__value { font: 800 1rem/1 var(--bn-round); }
.bn-box .wl-stats { gap: 8px; background: none; border: 0; border-radius: 0; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
.bn-box .wl-stat { padding: 10px 12px; border-radius: 12px; background: rgb(255 255 255 / 0.66); gap: 4px; }
.bn-box .wl-stat__label { font: 700 0.66rem/1.2 var(--bn-round); color: var(--bn-ink-soft); }
.bn-box .wl-stat__value { font: 800 1.3rem/1 var(--bn-round); }
.bn-box .wl-stat--word .wl-stat__value { font-size: 1.05rem; }
.bn-box .wl-caption { font-size: 0.8rem; color: var(--bn-ink-soft); }
.bn-box .wl-rings { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bn-box .wl-ring__value { font: 800 1.6rem/1 var(--bn-round); }
.bn-box .wl-ring__track { stroke: rgb(255 255 255 / 0.7); }
.bn-box .wl-bar__bg { fill: rgb(255 255 255 / 0.7); }
.bn-box .wl-table-wrap { border: 0; border-radius: 12px; background: rgb(255 255 255 / 0.66); }
.bn-box .wl-flowchart { grid-template-columns: 1fr !important; gap: 8px; }
.bn-box .wl-node { flex-direction: column; }
.bn-box .wl-node__card { padding: 10px 12px; background: rgb(255 255 255 / 0.66); border: 0; border-radius: 14px; }
.bn-box .wl-node__edge { width: 24px; height: 34px; margin: 4px auto; transform: rotate(90deg); }
.bn-box .wl-node__card .wl-ord { width: 28px; height: 28px; margin-bottom: 6px; }

/* fans: small speech tiles */
.bn-box .wl-quotes { display: grid; grid-template-columns: 1fr; gap: 8px; }
.bn-box .wl-quote { padding: 12px 14px; border: 0; border-radius: 16px 16px 16px 4px; background: rgb(255 255 255 / 0.72); }
.bn-box .wl-quote::before { content: none; }
.bn-box .wl-quote__text { margin: 0 0 4px; font: 700 0.98rem/1.35 var(--bn-round); }
.bn-box .wl-quote__who { font: 700 0.76rem/1.2 var(--bn-round); color: var(--bn-ink-soft); }

/* facts: a checklist */
.bn-box .wl-facts { gap: 6px; max-width: none; }
.bn-box .wl-fact { grid-template-columns: 26px 1fr; gap: 10px; padding: 9px 10px; border: 0; border-radius: 12px; background: rgb(255 255 255 / 0.66); font: 700 0.92rem/1.3 var(--bn-round); }
.bn-box .wl-fact__mark { width: 26px; height: 26px; border-radius: 9px; }
.bn-box .wl-fact__mark .wl-glyph { width: 14px; height: 14px; }

/* q&a: two columns of little cards */
.bn-box .wl-faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 8px; max-width: none; align-items: start; }
.bn-box .wl-qa { border: 0; border-radius: 14px; background: var(--bn-page); }
.bn-box .wl-qa__q { padding: 12px 14px; font: 800 0.95rem/1.3 var(--bn-round); }
.bn-box .wl-qa__a { padding: 0 14px 12px; font-size: 0.9rem; }

/* the post */
.bn-box .wl-post { max-width: none; padding: 14px; border: 0; border-radius: 16px; background: rgb(255 255 255 / 0.8); box-shadow: none; }
.bn-box .wl-post__text { font-size: 1rem; }
.bn-box .wl-post__avatar { width: 38px; height: 38px; }
.bn-box .wl-post__meta:empty { display: none; }

/* timeline */
.bn-box .wl-milestones { gap: 12px; }
.bn-box .wl-milestones::before { background: rgb(255 255 255 / 0.8); }
.bn-box .wl-ms__title { font-size: 1rem; }
.bn-box .wl-ms__text { font-size: 0.88rem; }

/* the contract: the lid of the box, dark */
.bn-box > .wl-sec--access .wl-sec__inner { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px 26px; }
.bn-box > .wl-sec--access .wl-sec__head { margin: 0; flex: 0 1 auto; }
.bn-box > .wl-sec--access .wl-kicker { background: rgb(255 255 255 / 0.16); color: #fff; }
.bn-box > .wl-sec--access .wl-sec__title { color: #fff; flex: none; font-size: clamp(1.4rem, 2vw, 1.8rem); }
.bn-box > .wl-sec--access .wl-sec__body { flex: 1 1 620px; }
.bn-box .wl-access { max-width: none; gap: 10px; grid-template-columns: minmax(0, 1fr); align-items: center; }
.bn-box .wl-access__net { color: rgb(255 255 255 / 0.7); font: 700 0.72rem/1.2 var(--bn-round); }
.bn-box .wl-ca { padding: 8px 8px 8px 16px; background: rgb(255 255 255 / 0.12); border: 0; border-radius: 16px; color: #fff; }
.bn-box .wl-ca__label { color: rgb(255 255 255 / 0.65); }
.bn-box .wl-copy { border-radius: 12px; font: 800 0.9rem/1 var(--bn-round); }
.bn-box .wl-links { gap: 6px; }
.bn-box .wl-link { padding: 10px 14px; border: 0; border-radius: 12px; background: rgb(255 255 255 / 0.14); color: #fff; font: 800 0.86rem/1 var(--bn-round); }
.bn-box .wl-link:hover { border: 0; background: rgb(255 255 255 / 0.24); }

/* footer */
.bn-foot { padding: 6px 6px 34px; }
.bn-foot .wl-foot__name { font-family: var(--bn-round); }
.bn-foot .wl-link { border: 0; background: #fff; }

/* ------------------------------------------------------------ motion: compartments pop in */
[data-wl-reveal="on"] .bn-box > .wl-reveal { opacity: 0; transform: scale(0.94); transition: opacity 0.6s var(--v-ease), transform 0.6s var(--v-spring); }
[data-wl-reveal="on"] .bn-box > .wl-reveal.wl-in { opacity: 1; transform: none; }
.bn-tile { animation: bn-pop 0.6s var(--v-spring) both; }
.bn-tile--art { animation-delay: 0.08s; }
.bn-tile--tick { animation-delay: 0.16s; }
.bn-tile--cta { animation-delay: 0.22s; }
.bn-tile--scene { animation-delay: 0.28s; }
.bn-tile--slogan { animation-delay: 0.34s; }
@keyframes bn-pop { from { opacity: 0; transform: scale(0.92); } }
.wl-motion-float .bn-art .wl-hero-img { animation: bn-drift 9s ease-in-out infinite; }
@keyframes bn-drift { 50% { transform: scale(1.04) translateY(-6px); } }

/* ------------------------------------------------------------ tablet + phone: fewer columns */
@media (max-width: 1100px) {
  .bn-top__nav { display: none; }
  .bn-box { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bn-tile--title { grid-column: 1 / span 2; grid-row: 1 / span 3; }
  .bn-tile--art { grid-column: 3 / span 2; grid-row: 1 / span 2; }
  .bn-tile--tick { grid-column: 3 / span 1; grid-row: 3; }
  .bn-tile--scene { grid-column: 4 / span 1; grid-row: 3; }
  .bn-tile--cta, .bn-box:not(:has(.bn-tile--scene)) .bn-tile--cta { grid-column: 1 / span 4; grid-row: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bn-tile--cta .wl-btn--primary { grid-column: auto; }
  .bn-box > .wl-sec, .bn-box > .wl-sec--lore, .bn-box > .wl-sec--features, .bn-box > .wl-sec--gallery, .bn-box > .wl-sec--infographic, .bn-box > .wl-sec--quotes, .bn-box > .wl-sec--faq, .bn-box > .wl-sec--timeline, .bn-box > .wl-sec--access { grid-column: span 4; }
  .bn-box > .wl-sec--facts, .bn-box > .wl-sec--tweet, .bn-tile--slogan { grid-column: span 2; }
}
@media (max-width: 640px) {
  :root { --bn-row: 96px; --bn-top: 56px; }
  .bn-box { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 26px; }
  .bn-tile--title { grid-column: 1 / -1; grid-row: auto; }
  .bn-tile--art { grid-column: 1 / -1; grid-row: auto; min-height: 220px; }
  .bn-tile--tick { grid-column: 1; grid-row: auto; }
  .bn-tile--scene { grid-column: 2; grid-row: auto; min-height: 120px; }
  .bn-box:not(:has(.bn-tile--scene)) .bn-tile--tick { grid-column: 1 / -1; }
  .bn-tile--cta, .bn-box:not(:has(.bn-tile--scene)) .bn-tile--cta { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .bn-tile--cta .wl-btn--primary { grid-column: 1 / -1; }
  .bn-box > .wl-sec, .bn-box > .wl-sec--lore, .bn-box > .wl-sec--features, .bn-box > .wl-sec--gallery, .bn-box > .wl-sec--infographic, .bn-box > .wl-sec--quotes, .bn-box > .wl-sec--faq, .bn-box > .wl-sec--timeline, .bn-box > .wl-sec--access,
  .bn-box > .wl-sec--facts, .bn-box > .wl-sec--tweet, .bn-tile--slogan { grid-column: 1 / -1; grid-row: auto; }
  .bn-box .wl-graphic--supply { grid-template-columns: 1fr; }
  .bn-headline { font-size: clamp(2.2rem, 11vw, 3rem); }
}

/* a brief whose hero is the quoted post: the art compartment holds it */
.bn-art.wl-media--post { position: absolute; inset: 0; display: grid; align-content: center; padding: 18px; overflow: auto; }
.bn-art .wl-post--giant { border: 0; border-radius: 18px; background: rgb(255 255 255 / 0.86); box-shadow: none; }
.bn-art .wl-post--giant .wl-post__text { font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.2; }
.bn-art .wl-post__meta:empty { display: none; }
