/* Depict pitch deck. Brand system shared with the ads skill:
   PP Neue Montreal, orange on ink/paper. Fixed 1280x720 design scaled to the
   viewport so typography is deterministic on any screen or projector. */

@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: block;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: block;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: block;
}

:root {
  --orange: #FF5314;
  --ink: #101010;
  --ink-soft: #1C1C1C;
  --paper: #F4F2EE;
  --grey: #D8D5D0;
  --grey-dark: #2A2A2A;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  background: var(--ink);
  font-family: "PP Neue Montreal", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

/* ---------- stage scaling ---------- */

.viewport {
  /* the canvas stops above the navigation bar: two separate zones */
  position: fixed; inset: 0 0 64px 0;
}
.stage {
  position: absolute; left: 0; top: 0;
  width: 1280px; height: 720px;
  transform-origin: top left;
}

/* ---------- slides ---------- */

.slide {
  position: absolute; inset: 0;
  padding: 84px 96px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease);
}
.slide.active { opacity: 1; pointer-events: auto; }

/* Entrance variants: fade is the base; slides alternate lateral push and
   zoom settle so the deck breathes instead of dissolving uniformly. */
.slide[data-enter="slide"].active { animation: enter-slide 0.75s var(--ease); }
@keyframes enter-slide { from { transform: translateX(72px); } }
.slide[data-enter="zoom"].active { animation: enter-zoom 0.75s var(--ease); }
@keyframes enter-zoom { from { transform: scale(0.955); } }

.qicon { width: 30px; height: 30px; color: var(--orange); flex: none; }

.theme-light { background: var(--paper); color: var(--ink); }
.theme-dark  { background: var(--ink);   color: var(--paper); }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.12s + 0.15s);
}
.slide.active [data-reveal] { opacity: 1; transform: none; }

.eyebrow {
  font-weight: 500; font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--orange);
  margin-bottom: 20px;
}
.headline {
  font-weight: 600; font-size: 72px;
  line-height: 1.04; letter-spacing: -0.025em;
  text-wrap: balance;
}
.headline em { color: var(--orange); font-style: normal; }
.headline-md { font-size: 60px; }

[data-logo] svg { display: block; height: 100%; width: auto; }

/* ---------- 1 · cover: centered, staged reveal ---------- */

.slide-cover {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.cover-logo {
  height: 44px; color: var(--paper);
  display: flex; justify-content: center;
  margin-bottom: 54px;
  opacity: 0;
}
.slide-cover.active .cover-logo {
  animation: cover-fade 0.8s var(--ease) forwards 0.1s;
}
.cover-headline {
  font-weight: 600; font-size: 92px;
  line-height: 1.05; letter-spacing: -0.028em;
}
.cover-headline .w {
  display: inline-block;
  opacity: 0; transform: translateY(34px);
}
.slide-cover.active .w {
  animation: cover-word 0.7s var(--ease) forwards;
  animation-delay: calc(0.5s + var(--wd) * 0.22s);
}
.cover-em {
  display: inline-block;
  color: var(--orange); font-style: normal;
  opacity: 0; transform: translateX(-52px);
}
.slide-cover.active .cover-em {
  animation: cover-em 0.85s var(--ease) forwards 2.1s;
}
@keyframes cover-fade { to { opacity: 1; } }
@keyframes cover-word { to { opacity: 1; transform: none; } }
@keyframes cover-em { to { opacity: 1; transform: none; } }
.slide-cover .cover-client { opacity: 0; }
.slide-cover.active .cover-client:not([hidden]) {
  animation: cover-fade 0.7s var(--ease) forwards 2.9s;
}
.cover-client {
  position: absolute; right: 96px; bottom: 76px;
  font-weight: 500; font-size: 20px; color: var(--paper);
  padding: 12px 22px;
  border: 1px solid var(--grey-dark); border-radius: 999px;
}
.cover-client em { color: var(--orange); font-style: normal; }

/* ---------- 2 · thesis: the beige sameness world ----------
   Visual language lifted from the roadmap video (2026-Q3-h2-roadmap-launch):
   identical white cards on #e7e3db, faux image block and text bars, no real
   content anywhere. The grid slowly zooms out over ~10s each time the slide
   enters, revealing more of the same. */

.slide-thesis {
  background: #e7e3db; color: #191919;
  display: flex; align-items: center;
  overflow: hidden;
}
.avg-grid {
  position: absolute; left: 50%; top: 50%;
  display: grid; grid-template-columns: repeat(10, 150px);
  gap: 22px;
  transform: translate(-50%, -50%) scale(1.3);
}
.slide-thesis.active .avg-grid {
  animation: avg-zoom 10s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes avg-zoom {
  from { transform: translate(-50%, -50%) scale(1.3); }
  to   { transform: translate(-50%, -50%) scale(0.94); }
}
.avg-card {
  width: 150px; height: 184px;
  background: #ffffff; border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 10px;
  display: flex; flex-direction: column; gap: 7px;
}
.avg-card .gimg { flex: 1; background: #ddddda; border-radius: 6px; }
.avg-card .gbar { height: 8px; border-radius: 99px; background: #c9c9c6; width: 70%; }
.avg-card .gbar.b2 { width: 42%; background: #ddddda; }
.avg-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(231, 227, 219, 0.96) 0%, rgba(231, 227, 219, 0.75) 42%, rgba(231, 227, 219, 0.15) 100%);
}
.avg-content { position: relative; }

.mini-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.mini-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 16px;
  padding: 10px 17px; border-radius: 999px;
  background: #fff; color: var(--ink);
  border: 1px solid rgba(16, 16, 16, 0.08);
}
.mini-chip .qicon { width: 17px; height: 17px; }
.mini-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; }

/* ---------- 3 · product mock ---------- */

.slide-product {
  display: grid; grid-template-columns: 440px 1fr;
  gap: 64px; align-items: center;
}
.product-copy {
  margin-top: 22px;
  font-weight: 500; font-size: 22px; line-height: 1.45;
  color: var(--ink-soft); opacity: 0.75;
}
.product-actions { display: flex; gap: 12px; margin-top: 28px; }
.btn-rule, .btn-reset {
  font-family: inherit; font-weight: 600; font-size: 16px;
  padding: 13px 22px; border-radius: 999px;
  cursor: pointer; border: none;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.btn-rule { background: var(--ink); color: var(--paper); display: flex; align-items: center; gap: 10px; }
.btn-rule-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.btn-rule:hover { transform: translateY(-1px); }
.btn-rule.done { background: var(--orange); }
.btn-reset { background: transparent; color: var(--ink); border: 1px solid var(--grey); }
.btn-reset:hover { border-color: var(--ink); }
.product-note {
  margin-top: 26px;
  font-weight: 500; font-size: 16px; line-height: 1.45;
  color: var(--ink); opacity: 0.45; max-width: 36ch;
}

/* Maison store panel: the mock reads as the demo brand's storefront, with
   Depict's orange UI layer (tags, pins) on top. Maison's own identity is
   Helvetica, letterspaced caps: deliberately NOT Depict's type. */
.store-panel {
  background: #FAF9F7;
  border-radius: 20px;
  padding: 20px 20px 22px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 24px 70px rgba(16, 16, 16, 0.12);
}
.store-brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.32em; text-indent: 0.32em;
  color: #1C1B1A; text-align: center;
  padding: 4px 0 14px;
  border-bottom: 1px solid rgba(28, 27, 26, 0.1);
  margin-bottom: 16px;
}

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pcard {
  position: relative;
  border-radius: 18px; overflow: hidden;
  background: #fff;
  cursor: pointer;
  border: 1px solid rgba(16, 16, 16, 0.07);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.pcard:hover { box-shadow: 0 10px 30px rgba(16, 16, 16, 0.12); transform: translateY(-2px); }
.pcard-img {
  height: 148px;
  background-size: cover;
  background-position: center 22%;
}
.pcard-meta {
  padding: 11px 13px 13px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.pcard-name { font-weight: 400; font-size: 14.5px; color: #1C1B1A; }
.pcard-price { font-weight: 400; font-size: 13.5px; color: #8A8683; margin-top: 3px; }
.pcard-tag {
  position: absolute; top: 10px; left: 10px;
  font-weight: 600; font-size: 11px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(16, 16, 16, 0.75); color: var(--paper);
}
.pcard.pinned .pcard-tag { background: var(--orange); }
.pcard.soldout .pcard-img { filter: grayscale(1) brightness(1.06); }
.pcard.soldout .pcard-name { opacity: 0.55; }
.pcard.buried { opacity: 0.45; }
.pcard.pinned { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }

/* ---------- 4 · suite ---------- */

.slide-suite { display: flex; flex-direction: column; }
.suite-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: auto;
}
.scard {
  border: 1px solid var(--grey-dark); border-radius: 22px;
  padding: 30px 28px;
  min-height: 250px;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.12s + 0.15s);
}
.slide.active .scard { opacity: 1; transform: none; }
.scard.anchor { background: var(--ink-soft); border-color: var(--grey-dark); }
.scard .qicon { width: 34px; height: 34px; margin-bottom: 18px; }
.scard h3 {
  font-weight: 600; font-size: 30px;
  letter-spacing: -0.015em; margin-bottom: 12px;
}
.scard p {
  font-weight: 500; font-size: 20px; line-height: 1.45;
  color: var(--grey); flex: 1;
}
.scard-badge {
  align-self: flex-start;
  margin-top: 20px;
  font-weight: 600; font-size: 15px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255, 83, 20, 0.14); color: var(--orange);
}
.scard-badge.soon { background: rgba(244, 242, 238, 0.08); color: var(--grey); }
.suite-intro {
  margin-top: 22px;
  font-weight: 500; font-size: 23px; line-height: 1.5;
  color: var(--grey); max-width: 62ch;
}

/* ---------- product deep-dive slides ---------- */

.slide-dd {
  display: grid; grid-template-columns: 460px 1fr;
  gap: 56px; align-items: center;
}
.dd-points { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.dd-point h3 {
  font-weight: 600; font-size: 23px; letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.dd-point p {
  font-weight: 500; font-size: 18.5px; line-height: 1.45;
  color: var(--ink-soft); opacity: 0.75;
}
.dd-point.proof { border-left: 3px solid var(--orange); padding-left: 18px; }
.dd-point.proof h3 { color: var(--orange); }
.store-panel-sm { padding: 18px 18px 20px; }
.store-panel-sm .store-brand { font-size: 13px; padding: 2px 0 12px; margin-bottom: 14px; }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-pcard {
  position: relative;
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.07);
  padding-bottom: 11px;
}
.mini-pimg {
  height: 140px;
  background-size: cover; background-position: center 22%;
}
.mini-grid .mini-pimg { height: 128px; }
.mini-tag {
  position: absolute; top: 8px; left: 8px;
  font-family: "PP Neue Montreal", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600; font-size: 11px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(16, 16, 16, 0.75); color: var(--paper);
}
.mini-tag.pin { background: var(--orange); }
.mini-pcard.dim .mini-pimg { filter: grayscale(1) brightness(1.06); }
.mini-pcard.dim .mini-name { opacity: 0.55; }
.mini-name {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400; font-size: 13.5px; color: #1C1B1A;
  padding: 9px 11px 0;
}
.mini-price {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400; font-size: 12.5px; color: #8A8683;
  padding: 2px 11px 0;
}

.search-bar {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 12px; padding: 12px 16px;
  margin-bottom: 8px;
}
.search-bar .qicon { width: 20px; height: 20px; color: #8A8683; }
.search-q {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400; font-size: 16px; color: #1C1B1A;
  border-right: 2px solid var(--orange); padding-right: 3px;
}
.search-note {
  font-weight: 500; font-size: 13.5px; color: var(--orange);
  margin-bottom: 14px;
}
.recs-anchor {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid rgba(16, 16, 16, 0.07);
  border-radius: 12px; padding: 10px;
  margin-bottom: 16px;
}
.recs-anchor-img {
  width: 52px; height: 64px; border-radius: 8px;
  background-size: cover; background-position: center 22%;
  flex: none;
}
.recs-anchor .mini-name, .recs-anchor .mini-price { padding: 0; }
.recs-viewing {
  margin-left: auto;
  font-weight: 600; font-size: 11px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(16, 16, 16, 0.08); color: #1C1B1A;
}
.recs-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #1C1B1A;
  margin-bottom: 12px;
}

/* ---------- 3 · stakes: the dark sameness sea ---------- */

.slide-stakes {
  display: flex; align-items: center;
  overflow: hidden;
}
.stakes-grid {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: grid; grid-template-columns: repeat(10, 150px);
  gap: 22px;
}
.stakes-grid .avg-card {
  background: #1a1a19;
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}
.stakes-grid .gimg { background: #232321; }
.stakes-grid .gbar { background: #2c2c2a; }
.stakes-grid .gbar.b2 { background: #232321; }
.stakes-grid .avg-card.hot {
  background: var(--orange);
  box-shadow: 0 0 70px rgba(255, 83, 20, 0.45);
}
.stakes-grid .avg-card.hot .gimg { background: rgba(255, 255, 255, 0.28); }
.stakes-grid .avg-card.hot .gbar { background: rgba(255, 255, 255, 0.4); }
.stakes-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.95) 0%, rgba(16, 16, 16, 0.7) 44%, rgba(16, 16, 16, 0.2) 100%);
}
.stakes-content { position: relative; }
.stakes-line {
  margin-top: 28px;
  font-weight: 500; font-size: 25px; line-height: 1.45;
  color: var(--grey); max-width: 42ch;
}

/* ---------- 3b · the drudgery ---------- */

.slide-chores { display: flex; flex-direction: column; }
.chore-chips {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  max-width: 980px;
}
.chore {
  display: inline-block;
  font-weight: 600; font-size: 24px; letter-spacing: -0.015em;
  padding: 18px 30px; border-radius: 16px;
  background: var(--ink); color: var(--grey);
}

/* ---------- split layout: full-height image, content column left ----------
   The picture takes the full canvas height and ~55% of the width; reusable
   for any image-led slide (currently the promised-land slide). */

.slide-split {
  padding: 0;
  display: grid; grid-template-columns: 45% 55%;
}
.split-content {
  padding: 84px 56px 84px 96px;
  display: flex; flex-direction: column;
}
.split-media {
  height: 100%;
  background-size: cover; background-position: center;
  background-color: var(--grey);
}

/* ---------- 4 · promised land ---------- */

.promised-list {
  margin-top: auto;
  display: flex; flex-direction: column;
  gap: 26px;
}
.promised-item {
  display: flex; align-items: flex-start; gap: 18px;
}
.promised-item .qicon { margin-top: 3px; }
.promised-item p {
  font-weight: 600; font-size: 24px; line-height: 1.3;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

/* ---------- 7 · proof ---------- */

.slide-proof { display: flex; flex-direction: column; padding-top: 64px; padding-bottom: 56px; }
.kpi-row {
  display: flex; gap: 22px;
  margin: 36px 0 40px;
}
.kpi-card {
  flex: 1;
  border-radius: 22px;
  padding: 32px 30px 28px;
  display: flex; flex-direction: column;
}
.kpi-card.orange { background: var(--orange); color: var(--paper); }
.kpi-card.ink { background: var(--ink); color: var(--paper); }
.kpi-card.line { background: transparent; color: var(--ink); border: 1px solid rgba(16, 16, 16, 0.18); }
.kpi-num {
  font-weight: 600; font-size: 76px; letter-spacing: -0.03em;
  line-height: 1;
}
.kpi-label {
  font-weight: 500; font-size: 18px;
  margin-top: 12px; opacity: 0.85;
}
.proof-quote blockquote {
  font-weight: 600; font-size: 30px; line-height: 1.3;
  letter-spacing: -0.015em; max-width: 52ch;
  text-wrap: balance;
}
.proof-attr {
  margin-top: 12px;
  font-weight: 500; font-size: 18px; color: var(--orange);
}
.proof-logos {
  margin-top: auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 22px 40px;
}
.proof-logos img {
  height: 26px; width: auto; max-width: 130px; object-fit: contain;
  /* logos arrive in every color, including white: flatten all of them to
     a uniform ink silhouette so the strip reads as one quiet system */
  filter: brightness(0);
  opacity: 0.55;
}
.proof-logo-text {
  font-weight: 500; font-size: 15.5px;
  color: var(--ink); opacity: 0.5;
}

/* ---------- 8 · company ---------- */

/* 55/45 split: gives the text column room (nothing may ever clip below
   the canvas) and asks fewer pixels of the 1600w team photo. */
.slide-company.slide-split { grid-template-columns: 55% 45%; }
.slide-company .split-content { justify-content: center; }
.company-fact {
  margin-top: 18px;
  font-weight: 500; font-size: 22px; line-height: 1.45;
  color: var(--grey); margin-bottom: 2px;
}
.company-group-label {
  margin-top: 18px; margin-bottom: 10px;
  font-weight: 500; font-size: 15px;
  color: var(--orange);
}
.hired-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hired-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14.5px;
  padding: 8px 13px; border-radius: 999px;
  border: 1px solid var(--grey-dark); color: var(--paper);
}
.hired-chip img { height: 15px; width: auto; display: block; }
.company-photo {
  /* Rooftop lunch photo (3072x4080 original in outputs/images/). Portrait
     into a 4:5 panel: cover trims ~6% height, anchored bottom so the sky
     gives way and the whole table group stays in frame. */
  background-image: url("assets/img/team.webp"), linear-gradient(160deg, #3a3632, #191817);
  background-position: center bottom;
}
.company-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px; margin-top: 2px;
}
.company-logos img {
  /* paper chips with the logos flattened to black and white: grayscale on
     a light chip keeps every mark legible (including solid-box marks like
     Y Combinator's, which a white-silhouette treatment blanks out). */
  height: 38px; width: auto; max-width: 160px;
  object-fit: contain;
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 10px;
  filter: grayscale(1) contrast(1.35);
}
.company-logo-text {
  font-weight: 600; font-size: 22px; letter-spacing: -0.01em;
  color: var(--paper);
}

/* ---------- 9 · how it lands ---------- */

.slide-lands {
  display: grid; grid-template-columns: 480px 1fr;
  gap: 72px; align-items: center;
}
.lands-platform {
  margin-top: 24px;
  font-weight: 500; font-size: 24px; line-height: 1.5;
  color: var(--ink-soft); opacity: 0.8;
}
.lands-right { display: flex; flex-direction: column; gap: 26px; }
.qa-head { display: flex; align-items: center; gap: 13px; margin-bottom: 7px; }
.qa-head .qicon { width: 27px; height: 27px; }
.lands-qa h3 {
  font-weight: 600; font-size: 24px; letter-spacing: -0.01em;
}
.lands-qa p {
  font-weight: 500; font-size: 19.5px; line-height: 1.5;
  color: var(--ink-soft); opacity: 0.75; max-width: 56ch;
}

/* ---------- 10 · close (big-image slide) ---------- */

.slide-close { display: flex; flex-direction: column; justify-content: center; }
.close-bg {
  position: absolute; inset: 0;
  background-image: url("assets/img/close-hero.webp"), linear-gradient(120deg, #232120, #101010);
  background-size: cover; background-position: center;
}
.close-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.94) 0%, rgba(16, 16, 16, 0.72) 46%, rgba(16, 16, 16, 0.28) 100%);
}
.close-content { position: relative; max-width: 640px; }
.close-logo { height: 34px; margin-bottom: 48px; color: var(--paper); }
.close-sub {
  margin-top: 28px;
  font-weight: 500; font-size: 25px; line-height: 1.5;
  color: var(--grey); max-width: 52ch;
}
.close-url {
  margin-top: 44px;
  font-weight: 600; font-size: 27px; color: var(--orange);
}

/* ---------- VM deep-dive: asymmetric grid ---------- */

.vm-asym {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.vm-feature {
  grid-row: span 2;
  position: relative;
  border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center 20%;
  min-height: 100%;
}
.vm-feature-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0) 0%, rgba(20, 19, 18, 0.6) 100%);
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500; font-size: 13.5px;
  letter-spacing: 0.24em; text-transform: uppercase;
}

.lands-foot {
  font-weight: 500; font-size: 15.5px;
  color: var(--ink); opacity: 0.5;
  margin-top: 2px;
}

/* ---------- navigation bar (own zone below the canvas) ---------- */

.navbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: 64px;
  background: var(--ink);
  border-top: 1px solid var(--grey-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  z-index: 40;
}

.timeline {
  display: flex; align-items: flex-end; gap: 26px;
}
.tl-section { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.tl-label {
  font-family: inherit; font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.02em;
  background: none; border: none; cursor: pointer;
  color: #9a9a9a;
  transition: color 0.2s;
  padding: 0 2px;
}
.tl-label:hover { color: var(--paper); }
.tl-section.here .tl-label { color: var(--paper); }
.tl-dots { display: flex; gap: 7px; }
.tl-dot {
  width: 22px; height: 5px; border-radius: 999px;
  border: none; cursor: pointer; padding: 0;
  background: rgba(154, 154, 154, 0.35);
  transition: background 0.25s;
}
.tl-dot:hover { background: #bbb; }
.tl-dot.past { background: rgba(255, 83, 20, 0.45); }
.tl-dot.on { background: var(--orange); }

/* ---------- toolbar ---------- */

.toolbar {
  display: flex; align-items: center; gap: 10px;
}
.toolbar-btn {
  font-family: inherit; font-weight: 600; font-size: 13px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(136, 136, 136, 0.4);
  background: rgba(16, 16, 16, 0.6); color: #ddd;
  cursor: pointer;
}
.toolbar-btn:hover { border-color: var(--orange); color: var(--orange); }

.toast {
  position: fixed; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  font-weight: 500; font-size: 14px;
  background: var(--paper); color: var(--ink);
  padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

/* ---------- config wizard ---------- */

.config[hidden] { display: none; }
.config {
  position: fixed; inset: 0;
  background: var(--ink); color: var(--paper);
  z-index: 60;
  overflow: hidden;
}
.config-logo {
  position: absolute; top: 44px; left: 6vw;
  height: 28px; color: var(--paper);
}
.wizard-back {
  position: absolute; top: 44px; right: 6vw;
  display: flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 500; font-size: 15px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--grey-dark);
  background: transparent; color: var(--paper);
  cursor: pointer;
  transition: border-color 0.2s;
  z-index: 2;
}
.wizard-back:hover { border-color: var(--grey); }
.wizard-back[hidden] { display: none; }

.wstep {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; justify-content: center;
  padding: 0 6vw;
}
.wstep.active { display: flex; }
.wstep.active .wstep-eyebrow,
.wstep.active .wstep-title,
.wstep.active .wchips,
.wstep.active .wcards {
  animation: wstep-in 0.6s var(--ease) both;
}
.wstep.active .wstep-title { animation-delay: 0.06s; }
.wstep.active .wchips, .wstep.active .wcards { animation-delay: 0.14s; }
@keyframes wstep-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.wstep-eyebrow {
  font-weight: 500; font-size: clamp(14px, 1.3vw, 18px);
  color: var(--orange); margin-bottom: 20px;
}
.wstep-title {
  font-weight: 600; font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02; letter-spacing: -0.028em;
  margin-bottom: clamp(32px, 5vh, 56px);
}
.wchips { display: flex; flex-wrap: wrap; gap: 14px; }
.wchip {
  font-family: inherit; font-weight: 500;
  font-size: clamp(17px, 1.8vw, 24px);
  padding: clamp(14px, 1.6vw, 20px) clamp(24px, 2.8vw, 36px);
  border-radius: 999px;
  border: 1px solid var(--grey-dark);
  background: transparent; color: var(--paper);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.wchip:hover { border-color: var(--grey); transform: translateY(-2px); }
.wchip.selected { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.wchip { display: inline-flex; align-items: center; gap: 12px; }
.wchip .qicon { width: 22px; height: 22px; }
.wchip img.mono { height: 24px; width: auto; display: block; }
.wchip img.sf { height: 26px; width: auto; display: block; }
/* white wordmarks flip to ink when the chip selects to paper */
.wchip.selected img.mono { filter: brightness(0); }
.wizard-note { margin-top: 26px; }
.bfs-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--grey-dark); color: var(--paper);
}
.bfs-chip svg { width: 18px; height: 16px; }
.bfs-chip.dark-text {
  border-color: rgba(16, 16, 16, 0.15); color: var(--ink);
}
.lands-badge { margin-top: 18px; }

.wcards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: clamp(14px, 2vw, 24px);
}
.wcard {
  font-family: inherit;
  border: 1px solid var(--grey-dark); border-radius: 20px;
  background: var(--ink-soft); color: var(--paper);
  padding: 10px 10px 0;
  cursor: pointer; text-align: left;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wcard:hover { border-color: var(--grey); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45); }
.wcard.selected { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.wcard-img {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  border-radius: 12px;
  background-size: cover; background-position: center;
  background-color: var(--grey-dark);
}
/* Vertical preview photos (house style, generated by the design skill).
   The gradient underneath is the graceful fallback when the local image
   binaries are absent (fonts-and-images stay out of the marketing repo). */
.wcard-img[data-img="fashion"] { background-image: url("assets/img/vertical-fashion.webp"), linear-gradient(160deg, #3a3632, #191817); }
.wcard-img[data-img="beauty"]  { background-image: url("assets/img/vertical-beauty.webp"),  linear-gradient(160deg, #403a38, #191817); }
.wcard-img[data-img="home"]    { background-image: url("assets/img/vertical-home.webp"),    linear-gradient(160deg, #38393a, #191817); }
.wcard-label {
  display: block;
  font-weight: 600; font-size: clamp(16px, 1.6vw, 21px);
  padding: 14px 8px 16px;
}

.wizard-dots {
  position: absolute; left: 50%; bottom: 36px;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.wdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grey-dark);
  transition: background 0.25s;
}
.wdot.on { background: var(--orange); }

/* ---------- slide nav arrows ---------- */

.navbtns {
  display: flex; gap: 8px;
}
.navbtn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(136, 136, 136, 0.4);
  background: rgba(16, 16, 16, 0.6); color: #ddd;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.navbtn:hover { border-color: var(--orange); color: var(--orange); }
.navbtn:disabled { opacity: 0.3; cursor: default; }
.navbtn:disabled:hover { border-color: rgba(136, 136, 136, 0.4); color: #ddd; }

/* ---------- print (PDF export foundation) ---------- */

@page { size: 1280px 720px; margin: 0; }

@media print {
  html, body { overflow: visible; background: #fff; }
  .viewport { position: static; display: block; }
  .stage { width: 1280px; height: auto; transform: none !important; }
  .slide {
    position: relative; inset: auto;
    width: 1280px; height: 720px;
    opacity: 1 !important; pointer-events: auto;
    page-break-after: always;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  [data-reveal], .scard, .w, .cover-em, .cover-logo, .cover-client:not([hidden]) { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .slide, .avg-grid { animation: none !important; }
  .navbar, .toast, .config { display: none !important; }
  /* PDF has no gaussian blur: Chrome prints blurred box-shadows as solid
     rectangles, so shadows and glows are stripped from print entirely. */
  .store-panel, .store-panel-sm, .avg-card, .pcard, .mini-pcard,
  .stakes-grid .avg-card.hot, .recs-anchor, .search-bar {
    box-shadow: none !important;
  }
}
