/* Hyperspeed background styles */
.td-hyperspeed {
  position: relative;
  width: 100%;
  max-height: 520px;
  height: 48vh;
  min-height: 320px;
  overflow: hidden;
  display: block;
}
.td-hyperspeed canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hyperspeed-overlay {
  position: absolute;
  inset: 0;
  color:white;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* allow clicks to pass to CTA only */
}
.hyperspeed-cta {
  text-align: center;
  color: #fff;
  pointer-events: auto; /* enable button clicks */
  padding: 28px 32px;
  
}
.hyperspeed-title {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
  color:#fff;
}
.hyperspeed-sub {
  font-size: 16px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.9);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,#7c5cff 0%,#4fd1c5 100%);
  color: #081126;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  color:#fff;
  text-shadow:1px 1px 0 rgba(0,0,0,0.6);
  box-shadow: 0 10px 30px rgba(92,51,255,0.18), inset 0 -4px 12px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, opacity .12s ease;
}
.cta-btn:hover{
  transform: translateY(-4px) scale(1.02);
  color:#fff;
  box-shadow: 0 18px 40px rgba(79,209,197,0.18);
}
/* Responsive tweaks */
@media (max-width: 768px){
  .hyperspeed-title{font-size:28px}
  .td-hyperspeed{height:40vh}
}
@media (max-width: 420px){
  .hyperspeed-sub{font-size:14px}
  .cta-btn{padding:12px 20px}
}
