*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0a0a0b;
  overflow-x: hidden;
}

.hero-solo {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(79, 70, 229, 0.12),
    0 0 120px rgba(99, 102, 241, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.45);
}

.hero-art {
  width: 100%;
  height: auto;
  display: block;
  background-color: rgba(243, 255, 71, 1);
}

.hero-cta {
  position: absolute;
  left: 397px;
  /* Lower in the frame — sits under the body copy, above the footer band */
  top: 343px;
  bottom: auto;
  transform: none;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: min(197px, 52vw);
  height: 48px;
  padding: 0;
  margin-top: 77px;
  margin-bottom: 77px;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  text-decoration: none;
  color: rgba(255, 0, 0, 1);
  background-color: rgba(222, 236, 34, 1);
  border: 3px solid rgba(0, 0, 0, 1);
  border-radius: 2px;
  box-shadow: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.hero-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: none;
}

.hero-cta:focus-visible {
  outline: 3px solid #ff0000;
  outline-offset: 3px;
}

.hero-cta:active {
  transform: translate(1px, 1px);
  box-shadow: none;
}

@media (max-width: 480px) {
  .hero-cta {
    left: 50%;
    top: 56%;
    margin-top: 77px;
    margin-bottom: 77px;
    transform: translateX(-50%);
    width: min(180px, 70vw);
    height: 44px;
  }

  .hero-cta:hover {
    transform: translateX(-50%) translate(-2px, -2px);
  }

  .hero-cta:active {
    transform: translateX(-50%) translate(1px, 1px);
  }
}
