/* ============ HERO ============ */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
  margin-top: 90px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text-soft);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet-300);
  box-shadow: 0 0 0 0 var(--violet-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 var(--violet-glow); }
  50%     { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--violet-300), var(--violet-500) 60%, var(--magenta-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .cursor {
  display: inline-block;
  width: 4px; height: 1em;
  background: var(--violet-500);
  margin-left: 6px;
  vertical-align: -0.12em;
  animation: blink 1.05s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero .role {
  font-family: var(--font-mono);
  color: var(--violet-300);
  font-size: 16px;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero .role::before {
  content: ""; width: 24px; height: 1px; background: var(--violet-500);
}
.hero p.lede {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — orbital */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.orbit {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  animation: spin 40s linear infinite;
}
.orbit.o2 { inset: 12%; border-style: solid; border-color: var(--line); animation-duration: 60s; animation-direction: reverse; }
.orbit.o3 { inset: 24%; border-style: dashed; border-color: var(--violet-faint); animation-duration: 30s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--violet-500);
  box-shadow: 0 0 18px var(--violet-glow);
}
.orbit-dot.d1 { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit.o2 .orbit-dot { top: 50%; right: -5px; transform: translateY(-50%); width: 8px; height: 8px; background: var(--magenta-500); }
.orbit.o3 .orbit-dot { bottom: -4px; left: 30%; width: 6px; height: 6px; background: var(--violet-300); }

/*
.hero-core {
  position: absolute; inset: 32%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--violet-500), var(--violet-700) 70%, #1a0d2b);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4), 0 0 80px var(--violet-glow);
  display: flex; align-items: center; justify-content: center;
  animation: float 6s ease-in-out infinite;
}
  */

.hero-core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;

  background: radial-gradient(
    circle at 30% 30%,
    var(--violet-500),
    var(--violet-700) 70%,
    #1a0d2b
  );

  box-shadow:
    inset 0 0 40px rgba(0,0,0,0.4),
    0 0 80px var(--violet-glow);

  display: flex;
  align-items: center;
  justify-content: center;

  animation: float 6s ease-in-out infinite;
}

/*
.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.4);
    margin-top: 51px;
}

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.tag-chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-soft);
  backdrop-filter: blur(8px);
  animation: floaty 5s ease-in-out infinite;
}
.tag-chip i { color: var(--violet-300); margin-right: 6px; }
.tag-chip.t1 { top: 6%; right: -2%; animation-delay: 0s; }
.tag-chip.t2 { bottom: 14%; left: -8%; animation-delay: 1.5s; }
.tag-chip.t3 { bottom: -2%; right: 12%; animation-delay: 3s; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 60px; }
  .hero-visual { max-width: 360px; }

  .tag-chip.t2 {
    left: 0;
  }

}
