:root {
  --background: #edeae5;
  --charcoal: #242321;
  --focus: rgba(36, 35, 33, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--charcoal);
  font-family: Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--background);
}

.landing-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.landing-image {
  display: block;
  width: 100%;
  height: auto;
}

.image-link {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.image-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.image-link-alpha {
  left: 25.4%;
  top: 21.6%;
  width: 18.4%;
  height: 5.1%;
}

.image-link-demo {
  left: 54%;
  top: 21.6%;
  width: 18.4%;
  height: 5.1%;
}

.workflow-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 0;
  padding: 0 24px 96px;
  overflow: visible;
}

.section-divider {
  position: relative;
  z-index: 10;
  width: min(980px, calc(100% - 48px));
  height: 1px;
  margin: clamp(-221px, calc(48px - 18.7vw), -86px) auto 48px;
  background: rgba(80, 70, 60, 0.18);
}

.workflow-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.workflow-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 700px) {
  .workflow-section {
    padding: 0 18px 72px;
  }

  .section-divider {
    width: calc(100% - 36px);
    margin: clamp(-95px, calc(36px - 18.7vw), -37px) auto 36px;
  }

  .workflow-image {
    width: 100%;
    border-radius: 16px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 13, 0.72);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.video-modal-close {
  display: block;
  margin: 0 0 12px auto;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--background);
  color: var(--charcoal);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.video-modal-close:focus-visible {
  outline: 3px solid rgba(247, 242, 234, 0.55);
  outline-offset: 3px;
}

.video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
