.hero-panel {
  margin-top: 12px;
  border: 1px solid #2c64bc;
  border-radius: 30px;
  min-height: 450px;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 8px;
  background:
    radial-gradient(circle at 12% 20%, rgba(84, 159, 255, 0.25), transparent 35%),
    radial-gradient(circle at 82% 18%, rgba(46, 113, 255, 0.28), transparent 35%),
    linear-gradient(120deg, #102751 0%, #07142b 45%, #040d20 100%);
  animation: heroFloatIn 0.7s ease both;
}

.hero-figure-wrap {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-figure {
  width: min(480px, 100%);
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(1.6) brightness(0.98);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-panel:hover .hero-figure {
  transform: translateY(-4px) scale(1.01);
  filter: hue-rotate(175deg) saturate(1.7) brightness(1.02);
}

.hero-copy {
  padding-right: 22px;
}

.hero-copy h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0.2px;
  font-size: clamp(42px, 6vw, 63px);
}

.hero-copy h1 span {
  color: #53a2ff;
}

.hero-copy p {
  margin-top: 16px;
  color: #c1d5f2;
  max-width: 560px;
  line-height: 1.24;
  font-size: 28px;
  font-weight: 500;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.download-btn {
  border: 1px solid #3f84ff;
  background: linear-gradient(180deg, #2a7eff, #1558c8);
  color: #fff;
  border-radius: 10px;
  padding: 16px 34px;
  font-weight: 800;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 22px rgba(31, 106, 245, 0.36);
}

.socials {
  display: flex;
  gap: 11px;
}

.socials a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.7px solid #2f8cff;
  background:
    radial-gradient(circle at 50% 26%, rgba(61, 150, 255, 0.22), rgba(9, 36, 81, 0.92) 70%),
    #082552;
  box-shadow:
    inset 0 0 0 1px rgba(157, 204, 255, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.33);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: #74b9ff;
  box-shadow:
    inset 0 0 0 1px rgba(157, 204, 255, 0.08),
    0 12px 20px rgba(8, 41, 92, 0.44);
}

.socials a img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(90%) sepia(14%) saturate(798%) hue-rotate(184deg) brightness(100%) contrast(102%);
}

.servers-row {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.bottom-blend {
  height: 120px;
  margin-top: 8px;
  border-radius: 18px;
  background:
    radial-gradient(80% 120% at 10% 50%, rgba(56, 130, 246, 0.2), transparent 60%),
    linear-gradient(90deg, rgba(20, 54, 112, 0.5), rgba(7, 22, 48, 0.12) 55%, rgba(4, 13, 31, 0.55));
  filter: blur(0.2px);
}

.server-card {
  border: 1px solid #335f9f;
  border-radius: 14px;
  padding: 13px 14px;
  background: linear-gradient(160deg, rgba(17, 39, 77, 0.9), rgba(8, 28, 56, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 125px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.server-card:hover {
  transform: translateY(-3px);
  border-color: #4b8be2;
  box-shadow: 0 12px 22px rgba(7, 26, 56, 0.45);
}

.server-meta .label {
  margin: 0;
  color: #d8e7ff;
  font-size: 18px;
}

.server-meta h3 {
  margin: 4px 0 9px;
  font-size: 34px;
  line-height: 1;
  color: #54a9ff;
}

.server-meta p {
  margin: 3px 0;
  color: #b7cce9;
  font-size: 22px;
}

.total-card .server-meta .label {
  color: #53a2ff;
  font-weight: 800;
  margin-bottom: 14px;
}

.total-card {
  width: 280px;
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1300px) {
  .hero-copy p {
    font-size: 19px;
    line-height: 1.38;
  }

  .download-btn {
    font-size: 16px;
    padding: 13px 18px;
  }

  .server-meta .label {
    font-size: 15px;
  }

  .server-meta h3 {
    font-size: 27px;
  }

  .server-meta p {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .hero-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 16px;
  }

  .hero-figure-wrap {
    order: 2;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
    flex-wrap: wrap;
  }

  .socials a {
    width: 48px;
    height: 48px;
  }

  .socials a img {
    width: 24px;
    height: 24px;
  }

  .servers-row {
    justify-content: stretch;
  }

  .total-card {
    width: 100%;
  }

  .bottom-blend {
    height: 86px;
  }
}
