.hero {
  min-height: clamp(570px, calc(100svh - 86px), 780px);
  padding: clamp(68px, 8vw, 112px) 0 clamp(76px, 9vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

.hero__copy {
  min-width: 0;
  max-width: 720px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 6.4rem);
  font-weight: 510;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero__lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform var(--motion-fast) var(--ease-out), background var(--motion-fast) ease;
}

.hero__action:focus-visible {
  background: #e6ffa3;
  transform: translateY(-2px);
}

.hero__identity {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: visible;
  isolation: isolate;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  forced-color-adjust: none;
}

.hero__identity::before {
  position: absolute;
  z-index: 0;
  inset: 8% 3%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgb(216 255 114 / 9%),
    rgb(9 12 10 / 72%) 42%,
    transparent 74%
  );
  filter: blur(20px);
  content: "";
  pointer-events: none;
}

.hero__identity-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero__identity-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: invert(1);
  opacity: 0.86;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero__action:hover {
    background: #e6ffa3;
    transform: translateY(-2px);
  }
}

@media (hover: none), (pointer: coarse) {
  .hero__action:active {
    background: #e6ffa3;
    transform: scale(0.985);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero__identity {
    width: min(560px, 78vw);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 58px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

  .hero__identity {
    width: min(100%, 360px);
  }
}

@media (forced-colors: active) {
  .hero__identity {
    overflow: hidden;
    border: 1px solid #f5f3ea;
    border-radius: 1rem;
    background: #101210;
  }

  .hero__identity::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__action:hover,
  .hero__action:focus-visible,
  .hero__action:active,
  .hero__identity,
  .hero__identity-art {
    transform: none !important;
  }
}
