.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 18px;
  align-items: center;
  min-height: calc(100vh - 104px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 0 24px;
}

.hero__copy {
  text-align: left;
  justify-self: start;
  max-width: 880px;
}

.eyebrow {
  color: rgba(94, 231, 255, 0.95);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(4.1rem, 8.8vw, 8.5rem);
  line-height: 0.9;
  text-shadow:
    0 0 18px rgba(94, 231, 255, 0.26),
    0 0 58px rgba(168, 85, 247, 0.22);
}

.hero__title span {
  background: linear-gradient(135deg, #ffffff 0%, #7af0ff 42%, #ff59e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__tagline {
  margin-top: 18px;
  color: #eef0ff;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: 0.01em;
}

.hero__lede {
  max-width: 58ch;
  color: rgba(246, 247, 255, 0.74);
  font-size: 1.04rem;
  line-height: 1.82;
}

.hero__actions {
  justify-content: flex-start;
  gap: 14px;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn--primary {
  background: linear-gradient(135deg, #7df3ff 0%, #e2fbff 45%, #ffffff 100%);
  box-shadow: 0 0 32px rgba(94, 231, 255, 0.22);
}

.btn--secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--secondary:hover {
  border-color: rgba(94, 231, 255, 0.38);
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.22);
}

.btn--discord {
  gap: 10px;
}

.discord-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero__stats {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(94, 231, 255, 0.03), rgba(168, 85, 247, 0.05));
}

.hero__stats strong {
  font-size: 1.5rem;
}

.hero__banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 8;
  min-height: 280px;
  padding: 16px;
  border-radius: 46px;
  margin: 0 0 10px;
  background:
    radial-gradient(circle at 50% 42%, rgba(94, 231, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(168, 85, 247, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  isolation: isolate;
}

.hero__banner::before,
.hero__banner::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 44px;
  pointer-events: none;
}

.hero__banner::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__banner::after {
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(94, 231, 255, 0.16), transparent 24%),
    radial-gradient(circle at 60% 72%, rgba(168, 85, 247, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(94, 231, 255, 0.06), transparent 24%, rgba(168, 85, 247, 0.08));
  opacity: 0.78;
}

.hero__banner img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  filter:
    drop-shadow(0 0 28px rgba(94, 231, 255, 0.22))
    drop-shadow(0 0 54px rgba(168, 85, 247, 0.16));
}

.hero__panel {
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 88px;
  overflow: hidden;
  transform: none;
  align-self: start;
}

.hero__panel-copy h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  padding: 0 24px;
}

.hero__panel-copy p:last-child {
  margin: 14px 0 0;
  color: rgba(246, 247, 255, 0.7);
  line-height: 1.72;
  max-width: 44ch;
  padding: 0 24px 24px;
}

@media (max-width: 720px) {
  .hero__content {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 8px;
  }

  .hero__panel {
    transform: none;
    padding: 0;
  }

  .hero__panel-copy h2,
  .hero__panel-copy p:last-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}
