* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #f0e9ff, #e9e0ff, #ffffff);
  background-attachment: fixed;
  color: #1c1c1e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  margin: 0;
  min-height: 100vh;
  width: 100%;
}

body > * {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #a45de2 0%, transparent 70%);
  top: -200px;
  left: -200px;
  z-index: 0;
  opacity: 0.4;
  filter: blur(80px);
  animation: blobMove1 20s ease-in-out infinite alternate;
  transform: translate(0, 0);
}

body::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7d4cf8 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  z-index: 0;
  opacity: 0.3;
  filter: blur(60px);
  animation: blobMove2 25s ease-in-out infinite alternate;
  transform: translate(0, 0);
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  z-index: 1;
}

header > .agent-icons {
  margin-bottom: 1.6rem;
}

header > .agent-icons + span, header > .agent-icons + div, header > .agent-icons + h1, header > .agent-icons + h2, header > .agent-icons + p {
  margin-top: 1.7rem;
}

header {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  background: none;
  padding-top: 0.5rem;
}

.badge {
  background: #f0e9ff;
  color: #7d4cf8;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

h1, h2 {
  font-family: 'Space Grotesk', sans-serif;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  margin-bottom: 1rem;
} 

.gradient-text {
  background: linear-gradient(to right, #7d4cf8, #a45de2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.btn {
  background-color: #7d4cf8;
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #6c42e1;
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* === Agent Icons Floating Animation === */
.agent-icons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.agent-icon {
  position: relative;
  width: 96px;
  height: 96px;
  cursor: pointer;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.2s;
}

.agent-icon:nth-child(1) { animation-delay: 0s; }
.agent-icon:nth-child(2) { animation-delay: 1.3s; }
.agent-icon:nth-child(3) { animation-delay: 2.1s; }

.agent-icon img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(164,93,226,0.12);
  background: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  border-radius: 0.5em;
}

.agent-icon:hover img {
  box-shadow: 0 8px 32px rgba(164,93,226,0.28);
  border-color: #e9e0ff;
  transform: scale(1.08);
}

.agent-icon::after {
  content: none;
}

.agent-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.08);
}

.agent-icon .agent-tooltip {
  display: none;
}

.agent-icon:hover .agent-tooltip {
  display: block;
}

.agent-tooltip {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(0.3em) scale(0.97);
  background: #fff;
  color: #a45de2;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
  padding: 0.08em 0.7em 0.08em 0.7em;
  border-radius: 0.7em;
  box-shadow: 0 2px 8px rgba(164,93,226,0.10);
  opacity: 1;
  pointer-events: none;
  z-index: 2000;
  text-align: center;
  min-width: 90px;
  max-width: 160px;
  margin: 0;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

.agent-tooltip .agent-name {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  color: #a45de2;
  display: block;
  margin: 0 0 0.08em 0;
}

.agent-tooltip .agent-role {
  font-weight: 400;
  font-size: 0.67rem;
  letter-spacing: -0.02em;
  color: #444;
  display: block;
  margin: 0;
}

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

@keyframes blobMove1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 60px) scale(1.05);
  }
}

@keyframes blobMove2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-30px, -50px) scale(1.1);
  }
}
