main .hero {
    gap: 32px;
    display: grid;
    padding-block: 100px;
    grid-template-columns: repeat(2, 1fr);
}
main .hero-word {
    max-width: 640px;
}
main .hero-word h1 {
    max-width: 520px;
    margin-bottom: 16px;
}
main .hero-word p {
    margin-bottom: 32px;
    padding-right: 92px;
}
main .hero-word .button-group {
    margin-bottom: 80px;
}
main .hero-stack p {
    margin-bottom: 24px;
}
main .hero-sponsor {
    width: 100%;
    overflow: hidden;
    position: relative;
}
main .hero-sponsor::after,
main .hero-sponsor::before {
    top: 0;
    z-index: 1;
    content: "";
    width: 48px;
    height: 100%;
    position: absolute;
    pointer-events: none;
}
main .hero-sponsor::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
main .hero-sponsor::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
main .hero-sponsor-list {
    gap: 18px;
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50.45%);
    }
}
main .hero-image {
    align-self: center;
    text-align: center;
}
main .hero-image img {
    width: 100%;
    max-width: 640px;
    margin-block: -100px;
}
@media (max-width: 1024px) {
    main .hero {
        display: block;
        position: relative;
        grid-template-columns: 1fr;
    }
    main .hero-word {
        max-width: none;
    }
    main .hero-word p {
        padding-right: 0;
    }
    main .hero-image {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        opacity: 0.025;
        position: absolute;
        overflow-x: hidden;
    }
    main .hero-image img {
        width: auto;
        height: 100%;
        max-width: none;
        margin-block: auto;
    }
}
@media (max-width: 768px) {
    main .hero {
        padding-top: 32px;
    }
    main .hero-word h1 {
        max-width: 460px;
        font: var(--font-display-3);
    }
}

main .hero:has(dotlottie-player) {
    overflow: hidden;
}
main .hero:has(dotlottie-player) .hero-image {
    width: 612px;
    height: 612px;
    overflow: hidden;
    margin-top: -100px;
    transform: scale(1.45);
}
main .hero:has(dotlottie-player) .hero-image img {
    display: none;
}
@media (max-width: 1024px) {
    main .hero:has(dotlottie-player) {
        padding-bottom: 0;
    }
    main .hero:has(dotlottie-player) .hero-image {
        opacity: 1;
        width: 100%;
        height: 100%;
        z-index: auto;
        position: static;
        margin-top: -50px;
        transform: scale(1.25);
    }
}
@media (max-width: 768px) {
    main .hero:has(dotlottie-player) .hero-image {
        margin-top: 50px;
        transform: scale(1.5) translateX(10px);
    }
}

main .service {
    padding-block: 100px;
}
main .service-word {
    width: 100%;
    margin: 0 auto;
    max-width: 612px;
    text-align: center;
}
main .service-word h2 {
    margin-bottom: 16px;
}
main .service-word p {
    margin-bottom: 52px;
}
main .service-list {
    gap: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
main .service-card {
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--color-neutral-500);
    border-radius: var(--border-radius-default);
    transition: border-color var(--animation-speed-default);
}
main .service-card:hover {
    cursor: pointer;
    border-color: var(--color-neutral-700);
}
main .service-card img {
    width: 100px;
    margin-bottom: 16px;
    aspect-ratio: var(--aspect-ratio-square);
    transition: transform var(--animation-speed-default);
}
main .service-card:hover img {
    transform: scaleX(1.0125) translateY(-2px);
}
main .service-card h3 {
    margin-bottom: 8px;
    font-weight: var(--font-weight-semi);
}
@media (max-width: 1024px) {
    main .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    main .service-list {
        grid-template-columns: 1fr;
    }
}

main .stats {
    padding-block: 100px;
}
main .stats-word {
    text-align: center;
    margin-bottom: 48px;
}
main .stats-word h2 {
    margin-bottom: 16px;
}
main .stats-list {
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
main .stats-item {
    text-align: center;
}
main .stats-item img {
    width: 80px;
    margin-bottom: 8px;
    aspect-ratio: var(--aspect-ratio-square);
}
main .stats-item h3 {
    margin-bottom: 4px;
    font: var(--font-display-3);
}
main .stats-item h4 {
    font-weight: var(--font-weight-medium);
}
main .stats-item .stats-symbol {
    color: var(--color-neutral-600);
}
@media (max-width: 768px) {
    main .stats-list {
        column-gap: 4px;
        grid-template-columns: repeat(2, 1fr);
    }
    main .stats-item h3 {
        font: var(--font-display-4);
    }
    main .stats-item h4 {
        font: var(--font-body-2);
    }
}

main .pricing {
    padding-block: 100px;
}
main .pricing-word {
    text-align: center;
    margin-bottom: 50px;
}
main .pricing-word span {
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font: var(--font-single-4);
    font-weight: var(--font-weight-semi);
}
main .pricing-word h2 {
    margin-bottom: 16px;
}
main .pricing-word p {
    margin: 0 auto;
    max-width: 612px;
    margin-bottom: 52px;
}
main .pricing-list {
    gap: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
main .pricing-card {
    overflow: hidden;
    background: var(--color-neutral-100);
    border: 1px solid var(--color-neutral-500);
    border-radius: var(--border-radius-default);
    transition: border-color var(--animation-speed-default);
}
main .pricing-card:has(.pricing-button:hover) {
    border-color: var(--color-system-blue);
}
main .pricing-cta {
    text-align: center;
    padding: 40px 40px 52px 40px;
    background: var(--color-neutral-200);
}
main .pricing-bottom {
    background: var(--color-neutral-100);
}
main .pricing-feature {
    list-style: none;
    padding: 40px 40px 72px 40px;
}
main .pricing-cta span {
    text-align: center;
    margin-bottom: 12px;
    padding-inline: 8px;
    font: var(--font-body-4);
    color: var(--color-system-blue);
    background: var(--color-neutral-100);
    font-weight: var(--font-weight-semi);
    border-radius: var(--border-radius-full);
    border: 1px solid var(--color-system-blue);
}
main .pricing-cta h3 {
    margin: 0 auto;
    position: relative;
    text-align: center;
    margin-bottom: 8px;
    max-width: max-content;
    font-weight: var(--font-weight-bold);
}
.pricing-description {
    margin-top: 16px;
    text-align: center;
    margin-bottom: 20px;
}
main .pricing-description p {
    line-height: 1.5;
}
main .pricing-button {
    width: 100%;
    max-width: none;
    padding: 24px 32px;
    font: var(--font-body-2);
    font-weight: var(--font-weight-bold);
}
main .pricing-feature {
    font: var(--font-body-2);
}
main .pricing-feature li {
    position: relative;
    padding-left: 44px;
    margin-bottom: 20px;
    color: var(--color-neutral-800);
    font-weight: var(--font-weight-semi);
}
main .pricing-feature li::before {
    top: 0;
    left: 0;
    width: 26px;
    content: "";
    height: 26px;
    position: absolute;
    background: center no-repeat url(../resource/svg/icon-check.svg);
}
main .pricing-feature hr {
    margin-block: 32px;
}
main .pricing-feature li.pricing-not {
    color: var(--color-neutral-700);
}
main .pricing-feature li.pricing-not::before {
    background: center no-repeat url(../resource/svg/icon-cross.svg);
}
@media (max-width: 1024px) {
    main .pricing-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    main .pricing-list {
        grid-template-columns: 1fr;
    }
    main .pricing-currency {
        font: var(--font-display-4);
    }
    main .pricing-value {
        font: var(--font-heading-2);
    }
}

main .testimonial {
    gap: 40px;
    display: grid;
    padding-block: 100px;
    grid-template-columns: repeat(2, 1fr);
}
main .testimonial blockquote {
    max-width: 624px;
    margin-bottom: 40px;
    padding: 12px 0 0 24px;
    font: var(--font-heading-2);
    color: var(--color-neutral-800);
    transition: color var(--animation-speed-default);
    background: top left no-repeat url(../resource/svg/icon-quotes.svg);
}
main .testimonial:has(.link:hover) blockquote,
main .testimonial:has(.link:hover) .testimonial-source span {
    color: var(--color-neutral-600);
}
main .testimonial-source {
    padding-left: 24px;
}
main .testimonial-source span {
    display: block;
    font: var(--font-body-2);
}
main .testimonial-person {
    margin-bottom: 4px;
    color: var(--color-neutral-800);
    font-weight: var(--font-weight-bold);
    transition: color var(--animation-speed-default);
}
main .testimonial-role {
    color: var(--color-neutral-700);
    transition: color var(--animation-speed-default);
}
main .testimonial-rate {
    padding: 8px 16px;
    margin-bottom: 16px;
    background: var(--color-neutral-200);
    border: 1px solid var(--color-neutral-400);
    border-radius: var(--border-radius-slight);
}
main .testimonial-rate .star {
    width: 68px;
    height: 12px;
    background: var(--color-system-yellow);
    clip-path: polygon(6px 0, 4.31px 3.98px, 0 4.34px, 3.28px 7.18px, 2.29px 11.4px, 6px 9.16px, 9.71px 11.4px, 8.72px 7.18px, 12px 4.34px, 7.69px 3.98px, 6px 0, 20px 0, 18.31px 3.98px, 14px 4.34px, 17.28px 7.18px, 16.29px 11.4px, 20px 9.16px, 23.71px 11.4px, 22.72px 7.18px, 26px 4.34px, 21.69px 3.98px, 20px 0, 34px 0, 32.31px 3.98px, 28px 4.34px, 31.28px 7.18px, 30.29px 11.4px, 34px 9.16px, 37.71px 11.4px, 36.72px 7.18px, 40px 4.34px, 35.69px 3.98px, 34px 0, 48px 0, 46.31px 3.98px, 42px 4.34px, 45.28px 7.18px, 44.29px 11.4px, 48px 9.16px, 51.71px 11.4px, 50.72px 7.18px, 54px 4.34px, 49.69px 3.98px, 48px 0, 62px 0, 60.31px 3.98px, 56px 4.34px, 59.28px 7.18px, 58.29px 11.4px, 62px 9.16px, 65.71px 11.4px, 64.72px 7.18px, 68px 4.34px, 63.69px 3.98px, 62px 0);
}
main .testimonial-scene {
    max-width: 300px;
    padding-top: 12px;
    justify-self: center;
}
main .testimonial-scene p {
    margin-bottom: 32px;
    font: var(--font-body-1);
    transition: color var(--animation-speed-default);
}
main .testimonial-scene .link {
    font: var(--font-single-2);
    line-height: var(--line-height-high);
}
main .testimonial-scene p:has(+ .link:hover) {
    color: var(--color-neutral-500);
}
@media (max-width: 1024px) {
    main .testimonial {
        grid-template-columns: 1fr;
    }
    main .testimonial blockquote {
        max-width: none;
        padding-right: 24px;
    }
    main .testimonial-scene {
        order: -1;
        max-width: none;
        padding-left: 24px;
        justify-self: start;
    }
    main .testimonial-scene p {
        margin-bottom: 16px;
    }
}

.hero-word h1,
.hero-word p,
.hero-word .button-primary,
.hero-word .button-secondary,
.hero-stack p,
.hero-stack .hero-sponsor,
.hero-image {
    opacity: 0;
    animation: fadeIn var(--animation-speed-slow) 0s forwards;
}
.hero-word p {
    animation-delay: 0.15s;
}
.hero-word .button-primary {
    animation-delay: 0.3s;
}
.hero-word .button-secondary {
    animation-delay: 0.45s;
}
.hero-stack p {
    animation-delay: 0.6s;
}
.hero-stack .hero-sponsor {
    animation-delay: 0.75s;
}
.hero-image {
    animation-delay: 0.3s;
}
