/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero{
  position:relative;min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:140px 24px 80px;overflow:hidden;
}
.hero__bg{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.hero__circles{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%}
.circle{
  position:absolute;top:50%;left:50%;
  border-radius:50%;border:1px solid rgba(255,255,255,.06);
  transform:translate(-50%,-50%);
}
.circle--xl{width:900px;height:900px}
.circle--lg{width:680px;height:680px}
.circle--md{width:460px;height:460px}
.circle--sm{width:240px;height:240px}
.hero__glow{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(255,255,255,.04) 0%,transparent 70%);
  border-radius:50%;
}
.hero__glow--accent{
  background:radial-gradient(circle,rgba(180,40,50,.06) 0%,transparent 70%);
}
.hero__content{position:relative;z-index:2;max-width:700px}
.hero__tag{
  display:inline-block;position:relative;
  font-size:13px;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.85);margin-bottom:20px;
  padding:8px 20px;border-radius:100px;
  background:transparent;
  border:none;overflow:hidden;z-index:0;
}
/* Black fill center */
.hero__tag::before{
  content:'';position:absolute;inset:1.5px;
  background:rgba(0,0,0,.97);border-radius:inherit;z-index:-1;
}
/* Orbiting border glow — conic gradient rotation */
.hero__tag::after{
  content:'';position:absolute;
  top:50%;left:50%;
  width:200%;height:200%;
  background:conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(180,40,50,.9) 8%,
    transparent 18%,
    transparent 48%,
    rgba(180,40,50,.45) 55%,
    transparent 65%,
    transparent 100%
  );
  z-index:-2;
  animation:orbitGlow 4s linear infinite;
}
@keyframes orbitGlow{
  0%{transform:translate(-50%,-50%) rotate(0deg)}
  100%{transform:translate(-50%,-50%) rotate(360deg)}
}
.hero__title{
  font-family:var(--font-heading);font-weight:400;
  font-size:clamp(52px,9vw,104px);line-height:1.05;letter-spacing:-.01em;
  margin-bottom:28px;
}
.hero__desc{
  font-size:var(--text-lg);line-height:1.7;color:var(--color-text-secondary);
  max-width:580px;margin:0 auto 40px;font-weight:300;
}
.hero__buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* Hero bottom info */
.hero__bottom{
  position:relative;z-index:2;margin-top:60px;
  text-align:center;
}
.hero__sub-label{font-size:15px;color:rgba(255,255,255,.5);margin-bottom:4px}
.hero__sub-desc{font-size:14px;color:rgba(255,255,255,.4)}

/* Advisory Hero Diamond */
.hero__diamond-gem{
  position:absolute;right:8%;top:50%;transform:translateY(-50%) rotate(45deg);
  z-index:1;width:200px;height:200px;opacity:.25;
}
.hero__diamond-gem img{width:100%;height:100%;object-fit:contain}
