.portage-hero {
  --hero-bg: #0a0b0d;
  --hero-fg: #dbdbdb;
  --hero-muted: #b9b9b9;
  --hero-line: #bcbcbc;
  --hero-accent: #999999;

  
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  width: min(100%, 80vw);
  min-height: clamp(6.4rem, 20.8vh, 8rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  color: var(--hero-fg);
}

.portage-hero-copy {
  align-self: end;
  width: 100%;
}

.portage-hero-kicker {
  margin: 0 0 0.85rem;
  color: var(--hero-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portage-hero h1 {
  margin: 0;
  color: var(--hero-fg);
  font-size: clamp(2rem, 2.5rem, 3rem);
  line-height: 1;
}

.portage-hero-text {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: var(--hero-muted);
  font-size: 1.5rem;
  line-height: 1.6;
}

.portage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.75rem;
}

.portage-hero-button,
.portage-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  color: var(--hero-fg);
  font-weight: 700;
  text-decoration: none;
}

.portage-hero-button {
  background: var(--hero-accent);
  color: #061018;
}

.portage-hero-link {
  border: 1px solid var(--hero-line);
}

.portage-hero-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end center;
  min-height: clamp(10rem, 28vw, 20rem);
  
  isolation: isolate;
}

.portage-hero-visual pixel-canvas {
  position: relative;
  z-index: 1;
  width: min(88%, 34rem);
  height: auto;
  aspect-ratio: 498 / 162;
  -webkit-mask: url("../images/portage.svg") center / contain no-repeat;
  mask: url("../images/portage.svg") center / contain no-repeat;
}

@media (min-width: 58rem) {
  .portage-hero {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  }
}
