#page-background {
    position: relative;
    background-color: var(--yellow);
    background: linear-gradient(to right,
            var(--yellow) calc(50% - 600px),
            var(--yellow-light) calc(50%),
            var(--yellow) calc(50% + 600px));
    min-width: 600px;
    min-height: 100vh;
    z-index: 0;
}

#page-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dot-pattern.png');
    background-repeat: repeat;
    background-size: 45%;
    opacity: 0.07;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    isolation: isolate;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: var(--site-width);
}

#section-splash {}

.splash-content {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-tagline {
    height: 70px;
    margin-top: -60px;
    margin-left: -100px;
}

.splash-logo {
    height: 240px;
}

.splash-download-link {
    margin-top: 30px;
}

.splash-download-image {
    height: 50px;
}

.splash-gallery {
    position: relative;
    height: 700px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}

.splash-gallery-item {
    position: absolute;
    z-index: 3;

    top: 50px;
    left: calc(50% - 500px);
}

.splash-gallery-image {
    height: 700px;
}

.splash-gallery-item:nth-child(1) {
    z-index: 10;
    transform: translate3d(-200px, 60px, 0) rotate(-5deg);
}

.splash-gallery-item:nth-child(2) {
    z-index: 30;
}

.splash-gallery-item:nth-child(3) {
    transform: translate3d(200px, 60px, 0) rotate(5deg);
    z-index: 20;
}

.curve-top {
    margin-top: -60px;
    z-index: 50;
}

#section-intro {
    background-color: var(--white);
}

#section-intro .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 40px 0 60px;
}

.diagram-container {
    position: relative;
    height: 348px;
}

.diagram-image {
    height: 348px;
    margin: 0 auto;
}

.text-overlay {
    position: absolute;
    top: 180px;
    left: 400px;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.diagram-paragraph {
    font-size: 20px;
    text-align: center;
}

.video-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.video-mask {
    border-radius: 20px;
    border: 2px solid black;
    overflow: hidden;
}

.video-thumbnail {
    height: 400px;
}

.video-share-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.video-share-message {
    font-size: 24px;
}

.benefit-sections {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section-separator {
    height: 160px;
    margin: 200px auto 0;
}

.section-benefit {}

#section-data {}

#section-pricing {}

#section-footer {}
