/* Timeline Soft homepage v2 enhancements */
.hero--v2{
  isolation:isolate;
  overflow:hidden;
}
.hero--v2::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background:
    radial-gradient(circle at 18% 24%,rgba(100,182,255,.16),transparent 28%),
    radial-gradient(circle at 74% 20%,rgba(47,107,255,.18),transparent 30%),
    linear-gradient(180deg,rgba(4,6,26,.12),rgba(4,6,26,0));
  pointer-events:none;
}
.hero-v2__webgl{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  opacity:.74;
  pointer-events:none;
}
.hero-v2__mesh{
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(100,182,255,.055) 1px,transparent 1px),
    linear-gradient(180deg,rgba(100,182,255,.05) 1px,transparent 1px);
  background-size:84px 84px;
  mask-image:radial-gradient(circle at 50% 38%,#000 0,transparent 72%);
  opacity:.58;
}
.hero-v2__inner{
  position:relative;
  z-index:2;
}
.hero--v2 .hero__lead{
  text-shadow:0 12px 42px rgba(5,7,28,.7);
}
.hero-v2__stack{
  width:min(100%,760px);
  margin-top:.25rem;
  border:1px solid rgba(100,182,255,.22);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(7,12,42,.68),rgba(255,255,255,.04));
  box-shadow:0 28px 90px -60px rgba(47,107,255,.75);
  backdrop-filter:blur(18px);
  overflow:hidden;
}
.hero-v2__stack-top{
  display:flex;
  align-items:center;
  gap:.42rem;
  min-height:44px;
  padding:0 1rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-v2__stack-top span{
  width:9px;
  height:9px;
  border-radius:50%;
}
.hero-v2__stack-top span:nth-child(1){background:#64b6ff}
.hero-v2__stack-top span:nth-child(2){background:#2f6bff}
.hero-v2__stack-top span:nth-child(3){background:#58e08a}
.hero-v2__stack-top b{
  margin-left:auto;
  color:var(--muted);
  font-family:var(--head);
  font-size:.76rem;
}
.hero-v2__orbit{
  position:relative;
  min-height:168px;
  margin:1rem;
  border:1px solid rgba(100,182,255,.16);
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 50%,rgba(100,182,255,.22),transparent 12%),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:auto,42px 42px,42px 42px;
  overflow:hidden;
}
.hero-v2__orbit::before,
.hero-v2__orbit::after{
  content:"";
  position:absolute;
  inset:28px 115px;
  border:1px dashed rgba(100,182,255,.38);
  border-radius:50%;
  transform:rotate(-14deg);
  animation:v2Orbit 18s linear infinite;
}
.hero-v2__orbit::after{
  inset:42px 150px;
  border-color:rgba(77,139,255,.32);
  animation-duration:24s;
  animation-direction:reverse;
}
.hero-v2__orbit span{
  position:absolute;
  z-index:1;
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  border:5px solid rgba(5,7,28,.8);
  border-radius:50%;
  color:#fff;
  background:var(--grad);
  font-family:var(--head);
  font-size:.74rem;
  font-weight:800;
  box-shadow:0 14px 32px -16px var(--glow);
}
.hero-v2__orbit span:nth-child(1){top:18px;left:50%;transform:translateX(-50%)}
.hero-v2__orbit span:nth-child(2){right:13%;top:50%;transform:translateY(-50%)}
.hero-v2__orbit span:nth-child(3){bottom:18px;left:50%;transform:translateX(-50%)}
.hero-v2__orbit span:nth-child(4){left:13%;top:50%;transform:translateY(-50%);background:linear-gradient(135deg,#64b6ff,#101940)}
.hero-v2__pipeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.5rem;
  padding:0 1rem 1rem;
}
.hero-v2__pipeline span{
  min-height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(100,182,255,.14);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-family:var(--head);
  font-size:.74rem;
  font-weight:800;
}
@keyframes v2Orbit{
  to{transform:rotate(346deg)}
}
@media(max-width:900px){
  .hero-v2__webgl{opacity:.48}
  .hero-v2__stack{width:min(100%,680px)}
}
@media(max-width:640px){
  .hero-v2__webgl{opacity:.28}
  .hero-v2__mesh{background-size:52px 52px;opacity:.38}
  .hero-v2__stack{border-radius:22px}
  .hero-v2__stack-top b{font-size:.68rem}
  .hero-v2__orbit{min-height:140px;margin:.75rem}
  .hero-v2__orbit::before{inset:28px 62px}
  .hero-v2__orbit::after{inset:42px 84px}
  .hero-v2__orbit span{
    width:50px;
    height:50px;
    font-size:.66rem;
    border-width:4px;
  }
  .hero-v2__pipeline{grid-template-columns:repeat(2,1fr);padding:.2rem .75rem .75rem}
}
@media(prefers-reduced-motion:reduce){
  .hero-v2__webgl{display:none}
  .hero-v2__orbit::before,
  .hero-v2__orbit::after{animation:none}
}
