.hero-avatar-wrap {
  position: relative;
  width: clamp(88px, 10vh, 112px);
  height: clamp(88px, 10vh, 112px);
  margin-bottom: 8px;
  z-index: 2;
}

.hero-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, #9146ff, #00f2fe, transparent 60%);
  animation: spinRadar 4s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
}

.hero-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.55);
}

.hero-badge-check {
  position: absolute;
  right: 2%;
  bottom: 2%;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00f2fe;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 10px;
  line-height: 1;
  border: 3px solid rgba(10, 5, 18, 1);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.hero-name {
  margin: 0 0 4px;
  font-family: var(--font-tech);
  font-size: clamp(36px, 4.6vh, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
  background: linear-gradient(90deg, #fff 0%, #9146ff 50%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(145, 70, 255, 0.4));
}

.hero-role {
  margin-bottom: 8px;
  font-family: var(--font-tech);
  color: rgba(255, 255, 255, 0.42);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  text-align: center;
}

.hero-bio {
  margin: 4px 0 20px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-stat {
  position: relative;
  overflow: hidden;
  padding: 16px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-stat:hover::before {
  background: #fff;
  box-shadow: 0 0 10px #fff;
}

.hero-stat-num {
  font-family: var(--font-tech);
  font-size: clamp(20px, 2.5vh, 24px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  transition: text-shadow 0.3s ease;
}

.hero-stat:hover .hero-stat-num {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-stat-lbl {
  margin-top: 4px;
  font-family: var(--font-tech);
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  transition: color 0.3s ease;
}

.hero-stat:hover .hero-stat-lbl {
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
}

.btn-main {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btn-main:hover::after {
  left: 200%;
}

.btn-main:focus-visible,
.hero-partner-btn-neon:focus-visible {
  outline: 2px solid rgba(145, 70, 255, 0.9);
  outline-offset: 2px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-main:hover .btn-icon {
  transform: scale(1.16) rotate(-8deg);
}

.btn-main-yt:hover {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

.btn-main-yt:hover::before {
  background: #ff0000;
  box-shadow: 0 0 12px #ff0000;
}

.btn-main-yt:hover .btn-icon {
  color: #ff0000;
}

.btn-main-tw:hover {
  background: rgba(145, 70, 255, 0.08);
  border-color: rgba(145, 70, 255, 0.4);
  box-shadow: 0 8px 25px rgba(145, 70, 255, 0.2);
  text-shadow: 0 0 8px rgba(145, 70, 255, 0.6);
}

.btn-main-tw:hover::before {
  background: #9146ff;
  box-shadow: 0 0 12px #9146ff;
}

.btn-main-tw:hover .btn-icon {
  color: #9146ff;
}

.hero-partners {
  width: 100%;
  max-width: 520px;
}

.hero-partner-card.premium-glow {
  position: relative;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.6), rgba(0, 0, 0, 0), rgba(0, 242, 254, 0.3));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(145, 70, 255, 0.2);
}

.card-inner {
  background: rgba(10, 5, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
}

.hero-partner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-partner-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-partner-logo-wrap {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-partner-name-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-partner-name {
  font-family: var(--font-tech);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-partner-badge {
  width: fit-content;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(145, 70, 255, 0.15);
  border: 1px solid rgba(145, 70, 255, 0.3);
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  color: #d8b4fe;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-partner-code {
  padding: 8px 14px;
  border-radius: 10px;
  text-align: right;
  background: rgba(0, 0, 0, 0.5);
  border: 1px dashed rgba(145, 70, 255, 0.4);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-partner-code:hover {
  background: rgba(145, 70, 255, 0.08);
  border-style: solid;
  border-color: #9146ff;
  box-shadow: 0 0 15px rgba(145, 70, 255, 0.2);
}

.code-label {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.code-value {
  font-family: var(--font-tech);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #d8b4fe;
  letter-spacing: 0.12em;
  text-shadow: 0 0 8px rgba(145, 70, 255, 0.6);
}

.hero-partner-promo-box {
  margin-bottom: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.promo-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.promo-item:hover {
  background: rgba(145, 70, 255, 0.05);
  border-color: rgba(145, 70, 255, 0.2);
  transform: translateY(-2px);
}

.p-val {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-tech);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.p-lbl {
  font-family: var(--font-tech);
  font-size: 9px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-partner-btn-neon {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 14px;
  background: rgba(145, 70, 255, 0.1);
  color: #d8b4fe;
  border: 1px solid rgba(145, 70, 255, 0.4);
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-partner-btn-neon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.hero-partner-btn-neon:hover {
  background: #9146ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
}

.hero-partner-btn-neon:hover::after {
  left: 200%;
}

.hero-partner-btn-neon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-partner-btn-neon:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-avatar-wrap {
    width: 92px;
    height: 92px;
  }

  .hero-name {
    font-size: 32px;
  }

  .hero-role {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .hero-bio {
    font-size: 12px;
    margin: 5px 0 15px;
  }

  .hero-stats {
    gap: 10px;
    padding: 0;
  }

  .hero-stat {
    padding: 12px 6px;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-main {
    width: 100%;
  }

  .hero-partner-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-partner-brand {
    flex-direction: column;
  }

  .hero-partner-code {
    width: 100%;
    text-align: center;
  }

  .promo-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 28px;
  }

  .hero-badge-check {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .card-inner {
    padding: 16px;
  }

  .hero-partner-name {
    font-size: 15px;
  }

  .code-value,
  .p-val {
    font-size: 15px;
  }

  .btn-main,
  .hero-partner-btn-neon {
    font-size: 13px;
  }
}

@keyframes spinRadar {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}