/* Dedicated business pages retain the brand mark without corporate-site navigation. */
.dedicated-business-page .topbar nav,
.dedicated-business-page .topbar .menu{display:none!important}
.dedicated-business-page .topbar{justify-content:flex-start}

/* Let each business image lead; reveal its compact message only when scrolled into view. */
.home-v2 .venture-card>div:last-child{
  width:min(600px,88%);
  padding:18px 22px;
  border-radius:0 12px 12px 0;
  background:linear-gradient(90deg,rgba(3,13,10,.88),rgba(3,13,10,.60) 72%,rgba(3,13,10,.30));
  backdrop-filter:blur(2px);
}
.home-v2 .venture-card h3{font-size:clamp(30px,3.25vw,46px);line-height:1.03;margin-bottom:10px}
.home-v2 .venture-card p{max-width:520px;font-size:16px;line-height:1.5;margin-bottom:12px}
.venture-reveal-ready .home-v2 .venture-card>div:last-child{
  opacity:0;
  transform:translateY(76px);
  transition:opacity .9s ease var(--reveal-delay,0ms),transform 1.25s cubic-bezier(.2,.75,.2,1) var(--reveal-delay,0ms);
}
.venture-reveal-ready .home-v2 .venture-card.is-visible>div:last-child{opacity:1;transform:translateY(0)}

@media(max-width:700px){
  .home-v2 .venture-card>div:last-child{width:92%;padding:16px 18px}
  .home-v2 .venture-card h3{font-size:32px}
  .home-v2 .venture-card p{font-size:15px;line-height:1.45}
  .venture-reveal-ready .home-v2 .venture-card>div:last-child{transform:translateY(48px)}
}
@media(prefers-reduced-motion:reduce){
  .venture-reveal-ready .home-v2 .venture-card>div:last-child{opacity:1;transform:none;transition:none}
}
