.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(21, 25, 33, 0.98), rgba(12, 15, 21, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%);
}

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

.hero-title,
.hero h1 {
  margin: 0;
}

.hero-subtitle,
.hero p {
  max-width: 68ch;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #f5d57e;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: #ffe7a6;
}

@media (max-width: 760px) {
  .hero {
    padding: 20px;
    border-radius: 18px;
  }
}
