/* ==========================================================================
   show.css — the feature show (one pillar at a time) and the hero-moment mocks.
   Loads after stack.css.
   ========================================================================== */

/* ---------- the show ---------- */
.show-section { padding: clamp(24px, 3vw, 40px) 0 0; }
.show { position: relative; overflow-anchor: none; height: calc(var(--n) * 72vh + 28vh); max-width: 1360px; margin: 0 auto; }
.show-pin { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
.show-inner { position: relative; width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: center; min-height: min(78vh, 720px); }
.show-copy, .show-stage { position: relative; }
.show-kicker { font: 500 clamp(22px, 2.2vw, 28px)/1.2 var(--font-serif); color: var(--v2-body); }
.show-kicker em { color: var(--blue); }
.show-count { margin-left: 10px; font: 500 13px/1 var(--font-display); color: #6b7088; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.show-count b { color: var(--ink); font-weight: 600; }
.show-slides { position: relative; min-height: 400px; margin-top: 24px; }
.show-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility 0s .2s; pointer-events: none; }
.show-slide.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .45s var(--ease-out) .12s, transform .55s var(--ease-out) .12s, visibility 0s; pointer-events: auto; }
.show-tab { display: inline-block; padding: 5px 11px; border-radius: 999px; background: var(--ghost); font: 600 12.5px/1.4 var(--font-display); color: var(--blue); }
.show-slide h3, .show-block h3 { margin-top: 14px; font: 500 clamp(26px, 2.9vw, 40px)/1.1 var(--font-serif); letter-spacing: -.015em; color: var(--ink); text-wrap: balance; }
.show-slide p, .show-block p { margin-top: 16px; max-width: 42ch; font: 400 16.5px/1.6 var(--font-body); color: var(--v2-body); }
.show-slide .pillar-link, .show-block .pillar-link { margin-top: 22px; color: var(--ink); }
.show-slide .pillar-link:hover, .show-block .pillar-link:hover { color: var(--blue); }
/* the rail: a vertical stepper whose fill follows scroll continuously (--p), not just the active step */
.show-rail { position: relative; display: grid; gap: 2px; margin: 18px 0 0; padding: 0 0 0 18px; }
.show-rail-track { position: absolute; left: 3px; top: 8px; bottom: 8px; width: 2px; border-radius: 2px; background: #e1e4ee; overflow: hidden; }
.show-rail-track b { position: absolute; left: 0; top: 0; width: 100%; height: calc(var(--p, 0) * 100%); background: var(--ink); }
.show-rail button { position: relative; display: flex; align-items: center; gap: 10px; padding: 5px 4px; border: 0; background: none; text-align: left; font: 500 13.5px/1.4 var(--font-display); color: #6b7088; cursor: pointer; transition: color .3s; }
.show-rail button:hover { color: var(--ink); }
.show-rail button:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }
.show-rail button span { position: absolute; left: -18px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 2px #e1e4ee; transition: box-shadow .3s, transform .3s; }
.show-rail button.is-active { color: var(--ink); }
.show-rail button.is-active span { box-shadow: 0 0 0 2px var(--ink); background: var(--ink); transform: scale(1.15); }
/* the hint sits on the stage until the last state */
.show-hint { position: absolute; right: 16px; top: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(15, 13, 25, .82); color: #fff; font: 500 12.5px/1.3 var(--font-display); backdrop-filter: blur(6px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
.show-hint .icon { width: 12px; height: 12px; transform: rotate(90deg); }
.show-hint.is-done { opacity: 0; transform: translateY(-6px); }
@media (prefers-reduced-motion: no-preference) { .show-hint .icon { animation: show-nudge 1.6s ease-in-out infinite; } }
@keyframes show-nudge { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(3px); } }
.show-stage { position: relative; min-height: 520px; border-radius: 28px; overflow: hidden; }
/* each pillar brings its own soft tint to the stage, like Cake's feature panels */
.show-tint { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease-out); }
.show-tint.is-active { opacity: 1; }
.show-tint--reviews { background: radial-gradient(70% 70% at 20% 10%, #dfe6ff, #f3f5ff 70%); }
.show-tint--messaging { background: radial-gradient(70% 70% at 80% 10%, #ffe3ea, #fff3f6 70%); }
.show-tint--competitors { background: radial-gradient(70% 70% at 20% 90%, #e6e1ff, #f4f2ff 70%); }
.show-tint--team { background: radial-gradient(70% 70% at 80% 90%, #dff5ea, #f0faf5 70%); }
.show-tint--listings { background: radial-gradient(70% 70% at 20% 10%, #fff0d9, #fff8ee 70%); }
.show-tint--insights { background: radial-gradient(70% 70% at 80% 10%, #dfe6ff, #f3f5ff 70%); }
.show-panel { position: absolute; inset: 0; padding: 32px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(24px) scale(.98); transition: opacity .2s var(--ease-out), transform .25s var(--ease-out); pointer-events: none; }
.show-panel.is-active { opacity: 1; transform: none; transition: opacity .5s var(--ease-out) .12s, transform .6s var(--ease-out) .12s; pointer-events: auto; }
/* within a state the mock drifts 28px with scroll (--sp), so every wheel tick moves something */
@media (prefers-reduced-motion: no-preference) { .show-panel.is-active .moment { transform: translateY(calc((.5 - var(--sp, .5)) * 28px)); } }
.show-panel.is-past { transform: translateY(-24px) scale(.98); }
.show-mobile { display: none; }

/* ---------- hero-moment mocks ---------- */
.moment { display: grid; gap: 14px; width: 100%; max-width: 460px; }
.m-card { padding: 18px 20px; border-radius: 18px; background: #fff; color: var(--ink); box-shadow: 0 0 0 1px rgba(15, 13, 25, .06), 0 24px 50px -30px rgba(15, 13, 25, .35); font: 500 14px/1.4 var(--font-display); }
.m-chip { justify-self: start; padding: 8px 12px; border-radius: 999px; background: rgba(255, 255, 255, .75); box-shadow: inset 0 0 0 1px rgba(15, 13, 25, .06); color: var(--ink); font: 500 13px/1.4 var(--font-display); }
.m-from { display: block; margin-bottom: 8px; font: 500 12.5px/1.4 var(--font-display); color: var(--v2-body); }
.m-sms p { font: 400 16px/1.5 var(--font-body); }
.m-video { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 8px 12px; border-radius: 10px; background: var(--ink); color: #fff; font: 600 13px/1.3 var(--font-display); }
.m-video .icon { width: 12px; height: 12px; }
.m-toast { display: flex; align-items: center; gap: 12px; }
.m-toast i { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font: 700 13px/1 var(--font-display); font-style: normal; }
.m-toast .gg { background: #fff; box-shadow: 0 0 0 1px rgba(15, 13, 25, .1); }
.m-toast .gg .icon { width: 20px; height: 20px; }
.m-toast .mm { background: #1fb07a; color: #fff; }
.m-toast b { display: block; font-weight: 600; }
.m-toast span { display: block; margin-top: 2px; font: 400 13px/1.4 var(--font-body); color: var(--v2-body); }
.m-toast--ink { background: var(--ink); color: #fff; }
.m-toast--ink i { background: var(--blue); color: #fff; }
.m-toast--ink span { color: rgba(255, 255, 255, .72); }
.m-chat { display: grid; gap: 10px; }
.m-them, .m-ai { max-width: 88%; padding: 12px 14px; border-radius: 16px; font: 400 15px/1.5 var(--font-body); }
.m-them { background: var(--v2-card); border-bottom-left-radius: 5px; }
.m-ai { justify-self: end; background: var(--blue); color: #fff; border-bottom-right-radius: 5px; }
.m-h { margin-bottom: 14px; font: 600 14px/1.4 var(--font-display); }
.m-bar { display: grid; grid-template-columns: 140px 1fr 40px; gap: 12px; align-items: center; margin-top: 10px; font-size: 14px; }
.m-bar i { display: block; height: 12px; border-radius: 6px; background: #e3e6f0; position: relative; overflow: hidden; }
.m-bar i::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: 6px; background: #c6cbda; }
.m-bar.you i::after { background: var(--blue); }
.m-bar.you span { font-weight: 600; }
.m-bar b { text-align: right; font-variant-numeric: tabular-nums; }
.m-note { margin-top: 16px; padding: 10px 12px; border-radius: 10px; background: #fff6e5; color: #8a5a00; font: 500 13px/1.4 var(--font-display); }
.m-board { display: grid; gap: 8px; }
.m-row { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 14px; background: var(--v2-card); }
.m-row.first { background: #fff; box-shadow: inset 0 0 0 1.5px var(--blue); }
.m-row .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font: 700 14px/1 var(--font-display); font-style: normal; background: linear-gradient(135deg, var(--a), var(--b)); }
.m-row b { display: block; font-weight: 600; }
.m-row span { display: block; font: 400 13px/1.4 var(--font-body); color: var(--v2-body); }
.m-row em { padding: 5px 10px; border-radius: 999px; background: var(--ghost); color: var(--blue); font: 600 12.5px/1.3 var(--font-display); font-style: normal; }
.m-field { display: grid; gap: 4px; }
.m-label { font: 500 12.5px/1.4 var(--font-display); color: var(--v2-body); }
.m-field b { font: 600 20px/1.3 var(--font-display); }
.m-field em { justify-self: start; margin-top: 6px; padding: 4px 9px; border-radius: 6px; background: #fff6e5; color: #8a5a00; font: 600 12px/1.3 var(--font-display); font-style: normal; }
.m-sync { display: grid; gap: 8px; }
.m-sync > div { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; background: var(--v2-card); }
.m-sync i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; font: 700 12px/1 var(--font-display); font-style: normal; }
/* one white tile per source, hairline, official mark inside */
.m-sync .gg, .m-sync .fb, .m-sync .yp, .m-sync .ta { background: #fff; box-shadow: inset 0 0 0 1px var(--v2-line); }
.m-sync i .icon { width: 17px; height: 17px; }
.m-sync b { margin-left: auto; padding: 4px 10px; border-radius: 6px; background: #ddf7ea; color: #0c7a52; font: 600 12px/1.3 var(--font-display); }
/* A watched source is never written to, so its badge is never the green "published" one. */
.m-sync b.is-watch { background: #f1f2f7; color: #5c6178; }
.m-q { padding: 12px 14px; border-radius: 12px; background: var(--ink); color: #fff; font: 500 14.5px/1.4 var(--font-display); }
.m-ask p { margin-top: 12px; font: 400 15px/1.55 var(--font-body); }
.m-ask p b { color: var(--blue); font-weight: 700; }
.m-aiv { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 14px; }
.m-aiv span { font: 500 13px/1.4 var(--font-display); color: var(--v2-body); }
.m-aiv b { padding: 6px 10px; border-radius: 8px; background: #ddf7ea; color: #0c7a52; font: 600 13px/1.3 var(--font-display); }

/* ---------- outcome cards, shallow ---------- */
.ocard-visual { height: 196px; padding: 18px 18px 0; }
.ocard-visual .ov { -webkit-mask-image: linear-gradient(#000 62%, transparent 100%); mask-image: linear-gradient(#000 62%, transparent 100%); box-shadow: 0 0 0 1px rgba(15, 13, 25, .06); }
.ocard-body { padding: 18px 22px 22px; }
.ocard-body h3 { font: 600 16.5px/1.35 var(--font-display); }
.ocard-body > p { margin-top: 6px; font-size: 14px; }
.ocard-body .pillar-link { margin-top: 12px; font-size: 13.5px; }

@media (max-width: 991px) {
  .show { display: none; }
  .show-mobile { display: grid; gap: 16px; }
  .show-block { padding: 24px; border-radius: 24px; background: #f6f7fb; }
  .show-block .moment { max-width: none; margin-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .show-slide, .show-panel, .show-tint { transition: none; }
}
/* the review link inside the text (2026-09-05: the plain ask earns the review; the video chip is gone) */
.m-link { display: inline-block; margin-top: 10px; font: 500 15px/1.3 var(--font-body); color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
