.try-section {
  --try-word-width: calc(100vw - 100px);
  --try-image-reveal: 0;
  --try-actions-reveal: 0;
  --try-actions-rise: 140px;
  position: relative;
  z-index: 31;
  padding: 0 0 clamp(40px, 5vw, 75px);
  overflow: hidden;
  background: #f7f4ee;
  color: #211f1b;
}

.try-section__word-stage {
  position: relative;
  z-index: 1;
  width: var(--try-word-width);
  aspect-ratio: 1000 / 430;
  margin: 0 auto;
  isolation: isolate;
}

.try-section__word {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 430;
  overflow: visible;
  pointer-events: none;
}

.try-section__word text {
  fill: #0d0c0b;
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 520px;
  font-weight: 700;
  letter-spacing: -.055em;
}

.try-section__caption-wrap {
  position: absolute;
  top: calc(80% - 50px);
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.try-section__caption,
.try-section__caption-outline {
  margin: 0;
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .035em;
}

.try-section__caption {
  position: relative;
  z-index: 1;
  color: #fff;
  mix-blend-mode: difference;
}

.try-section__caption-outline {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: .8px #000;
  paint-order: stroke fill;
  pointer-events: none;
}

.try-section__media {
  position: relative;
  z-index: 2;
  margin-top: calc(-30.93vw + 14.33px);
}

.try-section__hands {
  display: block;
  width: 100vw;
  max-width: none;
  height: auto;
  margin-right: 0;
  margin-bottom: -14.5vw;
  margin-left: calc(50% - 50vw);
  opacity: var(--try-image-reveal);
  object-fit: contain;
  pointer-events: none;
  will-change: opacity;
}

.try-section__actions {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(480px, calc(100% - 36px));
  margin: clamp(28px, 4vw, 56px) auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  opacity: var(--try-actions-reveal);
  transform: translateY(calc(-100px + var(--try-actions-rise)));
  will-change: opacity, transform;
}

.try-section .try-section__button {
  width: 100%;
  height: 64px;
  gap: 10px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}

.try-section .try-section__button--store,
.try-section .try-section__button--store:hover,
.try-section .try-section__button--store:focus-visible {
  border-color: rgba(13, 12, 11, .14);
  background: #fff;
  color: #0d0c0b;
  -webkit-text-fill-color: #0d0c0b;
}

.try-section__button--primary {
  border-color: rgba(10, 9, 8, .18);
  background: #0a0908;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

@media (max-width: 760px) {
  .try-section {
    padding-bottom: 38px;
  }

  .try-section__caption-wrap {
    top: 60%;
  }

  .try-section__caption,
  .try-section__caption-outline {
    font-size: clamp(14px, 3.5vw, 19px);
    letter-spacing: .02em;
  }

  .try-section__caption-outline {
    -webkit-text-stroke-width: .4px;
  }

  .try-section__actions {
    width: min(calc(100% - 64px), 340px);
    margin-top: 24px;
    gap: 16px;
    transform: translateY(calc(-50px + var(--try-actions-rise)));
  }

  .try-section .try-section__button {
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .try-section__caption,
  .try-section__caption-outline {
    font-size: 13px;
  }

  .try-section__actions {
    width: min(calc(100% - 64px), 330px);
    gap: 14px;
  }

  .try-section .try-section__button {
    height: 38px;
    padding: 0 10px;
    gap: 6px;
    font-size: 13px;
  }

  .try-section .try-section__button .google-mark {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .try-section {
    --try-image-reveal: 1;
    --try-actions-reveal: 1;
    --try-actions-rise: 0px;
  }
}
