html {
    scrollbar-gutter: stable;
}
body.lock-scroll {
    overflow: hidden;
}
.observed-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 99vh;
    width: 3px;
}
section {
    margin: 0 auto 120px;
    padding-left: 120px;
    padding-right: 120px;
    width: 100%;
    max-width: 1500px;
}
section.card-section {
    padding-left: 32px;
    padding-right: 32px;
}
.card-section-content {
    border-radius: 32px;
    padding: 60px;
}
section h2 {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 60px !important;
    width: 100%;
    max-width: 400px;
    font-weight: 700 !important;
    font-size: 2rem !important;
    text-align: center;
}
.btn-cta {
    box-shadow: 0 8px 20px -8px rgba(246, 191, 38, 0.7);
    background-image: linear-gradient(to bottom right, #facc15, #f59e0b);
    width: fit-content;
    color: var(--font-color-default);
    font-weight: 500 !important;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.btn-cta-secondary {
    box-shadow: none;
    background-image: none;
    background-color: var(--accent-color);
    color: white;
}
.btn-cta:active {
    transform: scale(0.99);
}
.btn-cta:hover {
    filter: brightness(1.05);
}
.btn-cta:focus-visible {
    box-shadow: 0 0 0 4px rgba(253, 230, 138, 1);
}
.btn-cta-secondary:focus-visible {
    box-shadow: none;
}

/* HERO SECTION */
section.hero-section {
    margin-top: 80px;
}
.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-headline {
    margin-bottom: 24px !important;
    width: 100%;
    max-width: 500px;
    font-weight: 700;
    font-size: 3rem;
}
.hero-description {
    margin-bottom: 32px !important;
    font-size: 1.125rem;
}
.hero-cta {
    margin-bottom: 16px;
}
.hero-image-wrapper {
    flex-shrink: 0;
    margin-right: -27px;
    width: 550px;
}
.hero-image {
    width: 100%;
}
.partner-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
.partner-wrapper svg {
    width: 24px;
}
.partner-wrapper span {
    font-size: 1rem;
}

/* TUTORIAL SECTION */
.tutorial-wrapper {
    background-color: #F4C142;
}
.tutorial-grid-mobile {
    display: none;
}
.tutorial-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.tutorial-text-description-container ul {
    display: flex;
    flex-direction: column;
    gap: 44px;
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}
.tutorial-text-description-container ul li {
    position: relative;
    cursor: pointer;
}
.tutorial-text-description-container ul li::after {
    content: "";
    position: absolute;
    inset: -20px;
    border: 2px solid transparent;
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.9);
    transition: border-color 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}
.tutorial-text-description-container ul li.js-tutorial-step-active::after {
    border-color: white;
    transform: scale(1);
    opacity: 1;
}
.tutorial-text-description-container ul li h4 {
    margin-bottom: 8px !important;
    font-weight: 700;
    font-size: 1rem;
}
.tutorial-text-description-container ul li p {
    font-size: .95rem;
}
.tutorial-visual-description-container {
    position: relative;
    flex-shrink: 0;
    width: 50%;
    max-width: 600px;
    height: 542px;
}
.tutorial-image-wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.tutorial-image-wrapper.js-tutorial-image-wrapper-active {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.tutorial-image {
    width: 100%;
}
.tutorial-steps-indicators {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}
.tutorial-step-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #aaa;
    background-color: white;
    transition: transform 0.5s ease, background-color 0.5s ease;
}
.tutorial-step-indicator.js-tutorial-step-indicator-active {
    background-color: #aaa;
    transform: scale(1.3);
}
/* How it works mobile */
.tutorial-grid-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}
.tutorial-grid-mobile ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.tutorial-grid-mobile ul li h4,
.tutorial-grid-mobile ul li p {
    text-align: center;
    font-size: 1rem;
}
.tutorial-grid-mobile ul li h4 {
    font-weight: 700;
}
.tutorial-image-wrapper-mobile {
    width: 100%;
}
.tutorial-image-mobile {
    width: 100%;
}

/* BENEFITS SECTION */
.benefits-grid {
    display: flex;
    justify-content: space-between;
}
.benefits-grid > div {
    width: 30%;
}
.benefit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit-visual-wrapper {
    margin-bottom: 16px;
    width: 130px;
    height: 130px;
}
.benefit-visual {
    width: 100%;
}
.benefit-container h4 {
    margin-bottom: 16px !important;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
}
.benefit-container p {
    text-align: center;
}

/* TARGET SECTIONS */
.target-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
}
.target-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.target-image-wrapper {
    margin-bottom: 24px;
    width: 100%;
    max-width: 400px;
}
.target-image {
    width: 100%;
}
.target-container h4 {
    width: 300px;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
}

/* OMEGA SECTION */
.omega-content {
    background-color: black;
}
.omega-content h2,
.omega-content p {
    color: white;
}
.omega-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.omega-grid p {
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.omega-grid p.ready {
    color: var(--accent-color);
    font-weight: 600;
}

/* Large Devices */
@media (max-width: 1200px) {
    section {
        margin-bottom: 80px;
        padding-left: 32px;
        padding-right: 32px;
    }
    .btn-cta {
        font-size: 1rem;
    }
    /* Hero Section */
    section.hero-section {
        margin-top: 50px;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-image-wrapper {
        width: 50%;
        max-width: 500px;
        min-width: 400px;
    }
}

/* Medium Devices */
@media (max-width: 992px) {
    /* Hero Section */
    .hero-headline {
        font-size: 2rem;
    }
    /* Tutorial Section */
    .tutorial-grid {
        display: none;
    }
    .tutorial-grid-mobile {
        display: block;
    }
}

/* Small Devices */
@media (max-width: 768px) {
    section h2 {
        font-size: 1.75rem !important;
    }
    .btn-cta {
        font-size: 1rem;
    }
    /* Hero Section */
    .hero-wrapper {
        flex-direction: column;
    }
    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 44px;
    }
    .hero-headline,
    .hero-description {
        text-align: center;
    }
    .hero-headline {
        max-width: 400px;
    }
    .hero-description {
        max-width: 600px;
    }
    .partner-wrapper svg {
        width: 20px;
    }
    .hero-image-wrapper {
        margin-right: 0;
        width: 100%;
        max-width: 550px;
        min-width: unset;
    }
    /* Benefits Section */
    .benefits-grid {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .benefits-grid > div {
        width: 100%;
        max-width: 500px;
    }
    /* Target Section */
    .target-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra Small Devices */
@media (max-width: 600px) {
    section.card-section {
        padding-left: 0;
        padding-right: 0;
    }
    .card-section-content {
        border-radius: 0;
        padding-left: 32px;
        padding-right: 32px;
    }
    /* Hero Section */
    .hero-headline {
        font-size: 2rem;
    }
}