.values {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 200px 40px 100px;
  overflow: hidden;
}

.values-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: var(--font-heading);
  font-size: clamp(90px, 18vw, 280px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.values-circle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.values-cluster {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 10px 8px;
  max-width: 300px;
  padding: 30px;
}

.values-badge {
  transform: rotate(var(--r, 0deg));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--color-accent);
  color: var(--color-text);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, z-index 0.25s;
}

.values-badge:hover {
  box-shadow: 0 8px 20px rgba(183, 63, 252, 0.45);
  z-index: 2;
  animation: values-badge-float 1.6s ease-in-out infinite;
}

@keyframes values-badge-float {
  0% {
    transform: rotate(0deg) scale(1.12) translate(0, -4px);
  }
  25% {
    transform: rotate(-4deg) scale(1.12) translate(4px, -8px);
  }
  50% {
    transform: rotate(0deg) scale(1.12) translate(0, -10px);
  }
  75% {
    transform: rotate(4deg) scale(1.12) translate(-4px, -8px);
  }
  100% {
    transform: rotate(0deg) scale(1.12) translate(0, -4px);
  }
}

.values-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--color-text);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .values {
    padding: 140px 20px 70px;
  }

  .values-circle {
    width: 320px;
    height: 320px;
  }

  .values-cluster {
    max-width: 240px;
    padding: 20px;
  }

  .values-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
}

@media (max-width: 600px) {
  .values { text-align: center; }
}
