.sp-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(90,10,50,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 80% 90% at 70% 40%, rgba(90,10,50,0.03) 0%, #fff 70%);
}

.sp-hero-left {
  padding-left: 70px;
  max-width: 600px;
  z-index: 5;
}

.sp-hero-title {
    font-family: 'Aeonik-Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 6.67vw;
        line-height: 100%;
    /* or 100% */
    
    color: #333333;
}



@media (min-width: 1440px) {
  font-size: 96px;
}
/* BUTTON - FIGMA EXACT STYLE */
.sp-btn {
    margin-top:50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 30px;
  min-height: 56px;

  background: #ffffff;
  border: 1px solid #5A0A32;
  border-radius: 100px;

  font-family: 'Aeonik-Regular', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #5A0A32;

  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;

  width: fit-content; /* responsive instead of fixed 211px */
}
.sp-btn svg{
     font-size: 20px;
  line-height: 24px;
}
/* HOVER (clean modern effect) */
.sp-btn:hover {
  background: #5A0A32;
  color: #ffffff;
  transform: translateY(-2px);
}
.sp-btn-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

/* Arrow line */
.sp-btn-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 12px;
  height: 1.5px;
  background: #5A0A32;
  transform: translateY(-50%);
}

/* Arrow head */
.sp-btn-icon::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #5A0A32;
  border-right: 1.5px solid #5A0A32;
  transform: translateY(-50%) rotate(45deg);
}

/* HOVER ICON COLOR */
.sp-btn:hover .sp-btn-icon::before,
.sp-btn:hover .sp-btn-icon::after {
  background: #fff;
  border-color: #fff;
}




.sp-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.sp-scroll-line {
  width: 1px;
  height: 42px;
  background: rgba(90,10,50,0.2);
}

#sp-vidBox {
  position: fixed;
  z-index: 50;
  border-radius: 40px;
  overflow: hidden;
}

#sp-realVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-scroll-space {
  height: 80vh;
}

/* ORBIT */
.sp-orbit {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-52%);
  width: 780px;
  height: 780px;
  opacity: .3;
  pointer-events: none;
}

/* SIDELINE */
.sp-sideline {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.sp-dot-line {
  width: 1px;
  height: 60px;
  background: rgba(90, 10, 50, 0.2);
}

.sp-dot-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(90, 10, 50, 0.4);
  margin: 9px 0;
}
/*@keyframes sp-rotate {*/
/*  from { transform: translateY(-52%) rotate(0deg); }*/
/*  to { transform: translateY(-52%) rotate(360deg); }*/
/*}*/

/*.sp-orbit {*/
/*  animation: sp-rotate 40s linear infinite;*/
/*}*/