.btc-home-header-2026{
  height: 800px;
  background-size: cover;
  background-position: bottom;
  margin: 0 -15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* white angled overlay */
.btc-home-header-2026::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;

  /* triangle-ish cut */
  clip-path: polygon(
    0 100%,
    100% 55%,
    100% 100%
  );

  z-index: 1;
}
.btc-home-header-2026 .header-content{
  padding-top: 6em;
  font-family: 'avenir-bold', 'Montserrat', sans-serif;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
}
.btc-home-header-2026 .header-content .left-content{
  flex: 1 1 50%
}
.btc-home-header-2026 .header-content .right-content{
  display: flex;
  flex: 1 1 50%;
  align-items: flex-end;
}
.btc-home-header-2026 .header-content h1{
  color: white;
  font-size: 42px;
}
.btc-home-header-2026 .header-content h2{
  color: #f6a81c;
  font-size: 26px;
}
.btc-home-header-2026 .header-content .img-wrap{
  min-width: 0;
  flex: 1 1 0;
}
.btc-home-header-2026 .header-content .img-wrap img{
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
}

@keyframes slideInRight {
  from { transform: translateX(100vw); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.btc-home-header-2026 .slide-in-1,
.btc-home-header-2026 .slide-in-2 {
  animation: slideInRight 1000ms ease-out both;
}

.btc-home-header-2026 .slide-in-2 {
  animation-delay: 1000ms; /* “shortly after” */
}