/* ============================================================
   PORTBOUND OPS v3 — premium editorial, orchestrated motion
   Fraunces / DM Sans / IBM Plex Mono. Explicit hex throughout.
   No backdrop-filter. Mobile-first.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --paper:  #faf8f4;
  --cream:  #f1ede6;
  --ink:    #1c1a16;
  --body:   #43403a;
  --mute:   #6b675f;
  --rule:   #e0dbd2;
  --sienna: #b5490a;
  --sienna-d: #933906;
  --dark:   #14130f;
  --df: 'Fraunces', Georgia, serif;
  --bf: 'DM Sans', system-ui, sans-serif;
  --mf: 'IBM Plex Mono', ui-monospace, monospace;
  --wrap: 1140px;
  --gut: 1.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--bf); font-size: 1rem; line-height: 1.7;
  font-weight: 300; color: #43403a; background: #faf8f4;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul[role="list"] { list-style: none; }
em { font-style: italic; color: #b5490a; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
:focus-visible { outline: 2px solid #b5490a; outline-offset: 3px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--bf); font-weight: 500; font-size: 0.9375rem;
  padding: 0.78rem 1.7rem; border-radius: 4px; overflow: hidden;
  transition: color 220ms var(--ease), background-color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease),
              box-shadow 220ms var(--ease);
}
.btn-fill { background: #b5490a; color: #ffffff; }
.btn-fill:hover {
  background: #933906; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,73,10,0.28);
}
.btn-fill:active { transform: translateY(0); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.6); color: #ffffff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #ffffff; transform: translateY(-2px); }
.btn-lg { padding: 0.92rem 2rem; font-size: 1rem; }
.btn-w { width: 100%; }

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgb(20, 19, 15);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: border-color 240ms ease;
  transform: translateZ(0);
}
.nav.scrolled { border-bottom-color: rgba(255,255,255,0.1); }
.nav-in {
  max-width: var(--wrap); margin-inline: auto; padding: 0.95rem var(--gut);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand-mark { color: #b5490a; font-size: 1.1rem; line-height: 1; }
.brand-name { font-family: var(--bf); font-weight: 500; font-size: 0.95rem; letter-spacing: -0.01em; color: #ffffff; }
.nav-links { display: none; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.875rem; color: rgba(255,255,255,0.85); transition: color 180ms ease; }
.nav-links a:hover { color: #ffffff; }
.nav-links .nav-cta {
  background: #b5490a; color: #ffffff; font-weight: 500;
  padding: 0.48rem 1.1rem; border-radius: 4px;
  transition: background-color 180ms ease, transform 180ms ease;
}
.nav-links .nav-cta:hover { background: #933906; transform: translateY(-1px); }
@media (min-width: 720px) { .nav-links { display: flex; } }

/* ─── Sticky bar ──────────────────────────────────────────── */
.bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  padding: 0.85rem var(--gut);
  background: rgb(20, 19, 15); border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%); transition: transform 420ms var(--ease);
  pointer-events: none; will-change: transform;
}
.bar.visible { transform: translateY(0) translateZ(0); pointer-events: auto; }
.bar-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); display: none; }
@media (min-width: 640px) { .bar-text { display: block; } }
@media (max-width: 639px) { .bar { gap: 0; justify-content: center; } }

/* ─── Popup modal ─────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal-veil { position: absolute; inset: 0; background: rgba(20,19,15,0.55); animation: veilIn 320ms ease both; }
.modal-card {
  position: relative; width: 100%; max-width: 430px;
  background: #faf8f4; border-radius: 10px;
  padding: 2.3rem 2rem 1.8rem;
  box-shadow: 0 24px 80px rgba(20,19,15,0.35);
  animation: cardIn 460ms var(--ease) both;
}
@keyframes veilIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-x {
  position: absolute; top: 0.8rem; right: 1rem;
  font-size: 1.6rem; line-height: 1; color: #6b675f;
  transition: color 160ms ease, transform 160ms ease;
}
.modal-x:hover { color: #1c1a16; transform: rotate(90deg); }
.modal-kicker {
  font-family: var(--mf); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: #b5490a;
  margin-bottom: 0.7rem;
}
.modal-h {
  font-family: var(--df); font-weight: 400; font-size: 1.45rem;
  line-height: 1.2; letter-spacing: -0.02em; color: #1c1a16; margin-bottom: 0.6rem;
}
.modal-p { font-size: 0.9rem; color: #6b675f; margin-bottom: 1.3rem; }
.modal-form { display: flex; flex-direction: column; gap: 0.7rem; }
.modal-form input {
  font-family: var(--bf); font-size: 0.95rem; color: #1c1a16;
  background: #ffffff; border: 1px solid #e0dbd2; border-radius: 5px;
  padding: 0.72rem 0.9rem; outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.modal-form input::placeholder { color: #a39e93; }
.modal-form input:focus { border-color: #b5490a; box-shadow: 0 0 0 3px rgba(181,73,10,0.12); }
.modal-note { margin-top: 0.8rem; font-size: 0.75rem; color: #6b675f; text-align: center; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #14130f; }
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
  animation: kenburns 9s var(--ease) both;
}
@keyframes kenburns { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(168deg, rgba(20,19,15,0.62) 0%, rgba(20,19,15,0.3) 45%, rgba(20,19,15,0.8) 100%);
}
.hero-in { position: relative; z-index: 2; padding-top: 7.5rem; padding-bottom: 5rem; }

.kicker {
  font-family: var(--mf); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: #e8672a;
  margin-bottom: 1.4rem;
}
.hero-h {
  font-family: var(--df); font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 4.4rem); line-height: 1.04;
  letter-spacing: -0.03em; color: #ffffff; margin-bottom: 1.5rem;
}
.hero-h em { color: #e8672a; }
.line { display: block; overflow: hidden; }
.line-in { display: inline-block; }
.hero-p { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: 2.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.hero-trust li {
  position: relative; padding-left: 1.05rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.78); letter-spacing: 0.01em;
}
.hero-trust li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: #e8672a;
}

/* Orchestrated entrance */
.rise { opacity: 0; transform: translateY(34px); animation: riseIn 760ms var(--ease) forwards; }
.rise-1 { animation-delay: 120ms; }
.rise-2 { animation-delay: 240ms; }
.rise-3 { animation-delay: 360ms; }
.rise-4 { animation-delay: 480ms; }
.rise-5 { animation-delay: 640ms; }
.rise-6 { animation-delay: 780ms; }
.rise-7 { animation-delay: 900ms; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

/* ─── Proof bar ───────────────────────────────────────────── */
.proof { background: rgb(20, 19, 15); border-top: 1px solid rgba(255,255,255,0.08); }
.proof-in { display: grid; grid-template-columns: 1fr 1fr; }
.proof-cell {
  padding: 1.7rem 1.25rem; display: flex; flex-direction: column; gap: 0.3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.proof-cell:nth-child(2n) { border-right: 0; }
.proof-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
.proof-n { font-family: var(--df); font-size: 1.8rem; color: #e8672a; line-height: 1; letter-spacing: -0.02em; }
.proof-l { font-size: 0.78rem; color: rgba(255,255,255,0.78); line-height: 1.45; }
@media (min-width: 820px) {
  .proof-in { grid-template-columns: repeat(4, 1fr); }
  .proof-cell:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .proof-cell:last-child { border-right: 0; }
  .proof-cell:nth-child(-n+2) { border-bottom: 0; }
}

/* ─── Sections ────────────────────────────────────────────── */
.sec { padding-block: 5.5rem; }
.sec--dark { background: rgb(20, 19, 15); }
@media (min-width: 820px) { .sec { padding-block: 7.5rem; } }

.sec-tag {
  font-family: var(--mf); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: #b5490a;
  margin-bottom: 1.1rem;
}
.sec--dark .sec-tag { color: #e8672a; }
.sec-h {
  font-family: var(--df); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.1;
  letter-spacing: -0.025em; color: #1c1a16; margin-bottom: 1.2rem;
}
.sec-h--light { color: #ffffff; }
.sec-h--light em { color: #e8672a; }
.sec-p { font-size: 1.02rem; color: #6b675f; max-width: 56ch; margin-bottom: 2.6rem; }
.sec-p--light { color: rgba(255,255,255,0.82); }

/* ─── Grids ───────────────────────────────────────────────── */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 2.4rem; margin-top: 2.5rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ─── Problem ─────────────────────────────────────────────── */
.cost { border-top: 2px solid #b5490a; padding-top: 1.3rem; }
.cost-n {
  font-family: var(--df); font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: #b5490a; line-height: 1; letter-spacing: -0.025em; margin-bottom: 0.9rem;
}
.cost-p { font-size: 0.96rem; color: #43403a; }

/* ─── Feature cards (dark section) ────────────────────────── */
.fcard {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 1.7rem 1.55rem; background: rgba(255,255,255,0.035);
  transition: border-color 240ms ease, background-color 240ms ease, transform 240ms var(--ease);
}
.fcard:hover { border-color: rgba(232,103,42,0.55); background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.fcard-h {
  font-family: var(--df); font-weight: 400; font-size: 1.1rem;
  color: #ffffff; line-height: 1.3; margin-bottom: 0.7rem; letter-spacing: -0.01em;
}
.fcard-p { font-size: 0.9rem; color: rgba(255,255,255,0.78); }

/* ─── Showcase ────────────────────────────────────────────── */
.feed {
  border-radius: 10px; overflow: hidden; background: #1a1d21;
  box-shadow: 0 4px 16px rgba(28,26,22,0.1), 0 16px 48px rgba(28,26,22,0.12);
  margin-bottom: 4.5rem;
}
.feed-top { display: flex; align-items: center; gap: 0.45rem; padding: 0.75rem 1.15rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.feed-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.feed-dot--y { background: #f5a623; }
.feed-dot--g { background: #4caf50; }
.feed-ch { font-family: var(--mf); font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-left: 0.4rem; }
.feed-body { padding: 0.9rem; display: flex; flex-direction: column; gap: 0.45rem; }
.feed-body img { width: 100%; height: auto; border-radius: 4px; }
.feed-cap { padding: 1.1rem 1.4rem; background: #faf8f4; border-top: 1px solid #e0dbd2; }
.feed-cap p { font-size: 0.9rem; color: #43403a; max-width: 64ch; }

.tag {
  display: inline-block; font-family: var(--mf); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: #b5490a;
  border: 1px solid rgba(181,73,10,0.35); border-radius: 100px;
  padding: 0.18rem 0.7rem; margin-bottom: 0.8rem;
}

.duo { display: grid; gap: 2.4rem; align-items: center; }
.duo-h {
  font-family: var(--df); font-weight: 400; font-size: 1.65rem;
  color: #1c1a16; letter-spacing: -0.02em; margin-bottom: 0.9rem;
}
.duo-p { font-size: 0.96rem; color: #6b675f; max-width: 44ch; margin-bottom: 1.6rem; }
.duo-img img {
  width: 100%; height: auto; border-radius: 10px;
  box-shadow: 0 4px 16px rgba(28,26,22,0.1), 0 16px 48px rgba(28,26,22,0.14);
}
@media (min-width: 860px) { .duo { grid-template-columns: 1fr 1.5fr; gap: 3.5rem; } }

/* ─── Bands ───────────────────────────────────────────────── */
.band { position: relative; height: 300px; overflow: hidden; }
.band-img {
  width: 100%; height: 110%; object-fit: cover;
  filter: saturate(0.72) brightness(0.6);
  transition: transform 1.2s var(--ease);
}
.band--q { height: 400px; display: flex; align-items: center; justify-content: center; }
.band--q .band-img { position: absolute; inset: 0; height: 100%; }
.band-quote {
  position: relative; z-index: 2; text-align: center;
  font-family: var(--df); font-weight: 400; font-style: italic;
  font-size: clamp(1.7rem, 4.6vw, 2.9rem); line-height: 1.18;
  letter-spacing: -0.02em; color: #ffffff;
}
@media (min-width: 820px) { .band { height: 380px; } .band--q { height: 480px; } }

/* ─── Who ─────────────────────────────────────────────────── */
.who {
  border: 1px solid #e0dbd2; border-radius: 10px;
  padding: 2.1rem 1.9rem; background: #f1ede6;
  transition: box-shadow 260ms var(--ease), transform 260ms var(--ease);
}
.who:hover { box-shadow: 0 12px 40px rgba(28,26,22,0.1); transform: translateY(-3px); }
.who-h { font-family: var(--df); font-weight: 400; font-size: 1.35rem; color: #1c1a16; margin-bottom: 1.25rem; letter-spacing: -0.015em; }
.who-list { display: flex; flex-direction: column; gap: 0.85rem; }
.who-list li {
  position: relative; padding-left: 1.2rem;
  font-size: 0.93rem; color: #43403a; line-height: 1.62;
}
.who-list li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50%; background: #b5490a;
}
.who-cta {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.875rem; font-weight: 500; color: #b5490a;
  border-bottom: 1px solid rgba(181,73,10,0.3);
  transition: border-color 180ms ease, color 180ms ease;
}
.who-cta:hover { color: #933906; border-color: #b5490a; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { border-top: 1px solid rgba(255,255,255,0.12); max-width: 840px; margin-top: 2.5rem; }
.faq-i { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-align: left; padding: 1.35rem 0;
  font-family: var(--df); font-weight: 400; font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.92); letter-spacing: -0.01em;
  transition: color 180ms ease;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: #ffffff; }
.faq-x { position: relative; flex-shrink: 0; width: 15px; height: 15px; transition: transform 280ms var(--ease); }
.faq-x::before, .faq-x::after { content: ''; position: absolute; background: #e8672a; }
.faq-x::before { left: 0; top: 6.5px; width: 15px; height: 2px; }
.faq-x::after { left: 6.5px; top: 0; width: 2px; height: 15px; }
.faq-q[aria-expanded="true"] .faq-x { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease); }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a-in p { padding-bottom: 1.35rem; font-size: 0.93rem; color: rgba(255,255,255,0.85); max-width: 66ch; line-height: 1.72; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-grid { align-items: start; }
.trust { display: flex; flex-direction: column; gap: 0.65rem; margin: 0 0 1.9rem; }
.trust li { position: relative; padding-left: 1.5rem; font-size: 0.93rem; color: #1c1a16; }
.trust li::before {
  content: ''; position: absolute; left: 0; top: 0.4em;
  width: 10px; height: 5px;
  border-left: 2px solid #b5490a; border-bottom: 2px solid #b5490a;
  transform: rotate(-45deg);
}
.mail {
  font-size: 0.95rem; font-weight: 500; color: #b5490a;
  border-bottom: 1px solid rgba(181,73,10,0.3);
  transition: border-color 180ms ease;
}
.mail:hover { border-color: #b5490a; }

.form {
  border: 1px solid #e0dbd2; border-radius: 10px;
  background: #f1ede6; padding: 2rem 1.8rem;
  box-shadow: 0 4px 16px rgba(28,26,22,0.06);
}
.form-h { font-family: var(--df); font-weight: 400; font-size: 1.3rem; color: #1c1a16; margin-bottom: 1.4rem; letter-spacing: -0.015em; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.fg label { font-size: 0.8rem; font-weight: 500; color: #1c1a16; }
.fg input {
  font-family: var(--bf); font-size: 0.95rem; color: #1c1a16;
  background: #faf8f4; border: 1px solid #e0dbd2; border-radius: 6px;
  padding: 0.72rem 0.9rem; outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.fg input::placeholder { color: #a39e93; }
.fg input:focus { border-color: #b5490a; box-shadow: 0 0 0 3px rgba(181,73,10,0.12); }
.form-note { margin-top: 0.85rem; font-size: 0.76rem; color: #6b675f; text-align: center; }

/* ─── Footer ──────────────────────────────────────────────── */
.foot { background: rgb(20, 19, 15); border-top: 1px solid rgba(255,255,255,0.08); padding-block: 2.6rem; }
.foot-in { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; text-align: center; }
.brand-name--foot { color: rgba(255,255,255,0.88); }
.foot-c { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.foot-m { font-size: 0.85rem; color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.2); transition: color 180ms ease; }
.foot-m:hover { color: #ffffff; }
@media (min-width: 640px) { .foot-in { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ─── Reveal ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.grid-4 .reveal:nth-child(2), .proof-in .reveal:nth-child(2) { transition-delay: 80ms; }
.grid-4 .reveal:nth-child(3), .proof-in .reveal:nth-child(3) { transition-delay: 160ms; }
.grid-4 .reveal:nth-child(4), .proof-in .reveal:nth-child(4) { transition-delay: 240ms; }
.grid-3 .reveal:nth-child(2) { transition-delay: 100ms; }
.grid-3 .reveal:nth-child(3) { transition-delay: 200ms; }
.grid-2 .reveal:nth-child(2) { transition-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .rise { opacity: 1; transform: none; transition: none; animation: none; }
  .hero-img { animation: none; }
  .modal-card, .modal-veil { animation: none; }
  html { scroll-behavior: auto; }
  .bar { transition: none; }
}

/* ─── v3.1 image & motion refinements ─────────────────────── */

/* Clickable proof CTA cell */
.proof-cell--cta { transition: background-color 220ms ease; }
.proof-cell--cta:hover { background: rgba(232,103,42,0.1); }
.proof-cell--cta .proof-l { color: #ffffff; font-weight: 400; }
.proof-cell--cta:hover .proof-n { color: #ff7a35; }

/* Band images: cinematic settle on scroll into view */
.band-img { transform: scale(1.12); transition: transform 1.6s var(--ease); will-change: transform; }
.band.inview .band-img { transform: scale(1); }

/* Slack messages arrive with a stagger once feed is revealed */
.feed-body img {
  opacity: 0; transform: translateY(16px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.feed.visible .feed-body img { opacity: 1; transform: translateY(0); }
.feed.visible .feed-body img:nth-child(1) { transition-delay: 260ms; }
.feed.visible .feed-body img:nth-child(2) { transition-delay: 460ms; }

/* Email duo: text slides from left, screenshot from right */
.reveal--left { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }

/* Email screenshot: gentle lift on hover */
.duo-img img { transition: transform 320ms var(--ease), box-shadow 320ms var(--ease); }
.duo-img img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(28,26,22,0.12), 0 28px 64px rgba(28,26,22,0.18);
}

@media (prefers-reduced-motion: reduce) {
  .band-img { transform: none; transition: none; }
  .feed-body img { opacity: 1; transform: none; transition: none; }
  .reveal--left, .reveal--right { transform: none; }
}
