/* Product heroes: Proton-style stack. Claims stay in the Series-08 HTML. */

.product-hero.product-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1rem;
  width: min(100% - 2.5rem, 80rem);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(4.2rem, 7.5vw, 6rem) 0 3.2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 78%, rgba(226, 181, 106, .12), transparent 58%);
}

.product-hero-stack .hero-copy {
  max-width: 38rem;
}

.product-hero.product-hero-stack .hero-copy h1 {
  max-width: 16ch;
  margin-inline: auto;
  font-family: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.product-hero-stack .hero-copy h1 em {
  color: #e2b56a;
}

.product-hero-stack .hero-subline {
  max-width: 34rem;
  margin-inline: auto;
}

.product-hero-stack .hero-license,
.product-hero-stack .hero-actions,
.product-hero-stack .hero-assurance {
  justify-content: center;
}

.product-hero-stack .hero-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
}

.product-hero-stack .button-primary,
.product-hero-stack .button-outline {
  min-height: 2.7rem;
  padding: .7rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: #e2b56a;
  color: #1a1206;
  font-weight: 650;
  box-shadow: none;
}

.product-hero-stack .button-outline {
  background: transparent;
  color: #f5f3ee;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.product-hero-stack .button-primary:hover,
.product-hero-stack .button-outline:hover {
  transform: none;
}

.hero-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  width: 100%;
}

.hero-stage:has(> :nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
  max-width: 54rem;
}

.hero-shot {
  margin: 0;
}

.hero-shot__frame {
  overflow: hidden;
  border-radius: 1.05rem;
  background: #12110e;
  box-shadow:
    0 1.6rem 3.2rem rgba(0, 0, 0, .42),
    0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-shot figcaption {
  margin: .5rem 0 0;
  color: #9a9286;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-hero-stack .screen-credit {
  position: static;
  max-width: 42rem;
  margin: .2rem auto 0;
  color: #9a9286;
  font-size: .62rem;
  line-height: 1.45;
  text-align: center;
}

.proof-chip-row {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 760px) {
  .hero-stage,
  .hero-stage:has(> :nth-child(2):last-child) {
    grid-template-columns: 1fr;
    max-width: none;
  }
}
