.asn1ve-page {
  --asn1ve-border: #cbd8e7;
  --asn1ve-caption: #485b70;
  --asn1ve-screen-shadow: 0 18px 46px rgba(10, 23, 40, .1);
}

.asn1ve-hero {
  padding-bottom: clamp(72px, 8vw, 112px);
}

.asn1ve-hero::after {
  z-index: 0;
  pointer-events: none;
}

.asn1ve-hero .container {
  position: relative;
  z-index: 1;
}

.asn1ve-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 6vw, 86px);
}

.asn1ve-hero-copy {
  min-width: 0;
}

.asn1ve-hero-copy h1 {
  font-size: clamp(3.6rem, 6.4vw, 5.7rem);
}

.asn1ve-hero-copy .lead {
  max-width: 600px;
}

.asn1ve-hero-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.asn1ve-screen {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--asn1ve-border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--asn1ve-screen-shadow);
}

.asn1ve-screen img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
}

.asn1ve-screen figcaption {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
  border-top: 1px solid var(--asn1ve-border);
  color: var(--asn1ve-caption);
  font-size: .9rem;
  line-height: 1.55;
}

.asn1ve-screen figcaption strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.asn1ve-screen-hero {
  border-radius: 24px;
}

.asn1ve-screen-hero figcaption {
  min-height: 62px;
}

.asn1ve-feature-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  gap: clamp(50px, 7vw, 100px);
}

.asn1ve-feature-copy {
  max-width: 600px;
}

.asn1ve-workspace .section-head {
  margin-bottom: 44px;
}

.asn1ve-screen-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.asn1ve-screen-grid .asn1ve-screen {
  align-self: stretch;
}

.asn1ve-screen-grid .asn1ve-screen img {
  width: 100%;
  aspect-ratio: 2.6 / 1;
  object-fit: contain;
}

.asn1ve-screen-grid .asn1ve-screen-tall img {
  aspect-ratio: 1.25 / 1;
  object-position: top center;
}

@media (max-width: 1100px) {
  .asn1ve-hero-grid {
    grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr);
    gap: 42px;
  }

  .asn1ve-feature-layout {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .asn1ve-hero-grid,
  .asn1ve-feature-layout {
    grid-template-columns: 1fr;
  }

  .asn1ve-hero-copy,
  .asn1ve-feature-copy {
    max-width: 720px;
  }

  .asn1ve-screen-hero {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .asn1ve-hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .asn1ve-screen-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .asn1ve-screen-grid .asn1ve-screen img,
  .asn1ve-screen-grid .asn1ve-screen-tall img {
    aspect-ratio: auto;
  }
}

@media (max-width: 430px) {
  .asn1ve-hero-copy .hero-actions {
    flex-direction: column;
  }

  .asn1ve-hero-copy .button {
    width: 100%;
  }

  .asn1ve-screen,
  .asn1ve-screen-hero {
    border-radius: 14px;
  }

  .asn1ve-screen figcaption {
    padding: 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .asn1ve-page .asn1ve-screen {
    scroll-behavior: auto;
  }
}
