:root {
    --color-gray-50: oklch(.985 .002 247.839);
    --color-gray-100: oklch(.967 .003 264.542);
    --color-gray-200: oklch(.928 .006 264.531);
    --color-gray-300: oklch(.872 .01 258.338);
    --color-gray-400: oklch(.707 .022 261.325);
    --color-gray-500: oklch(.551 .027 264.364);
    --color-gray-600: oklch(.446 .03 256.802);
    --color-gray-700: oklch(.373 .034 259.733);
    --color-gray-800: oklch(.278 .033 256.848);
    --color-gray-900: oklch(.21 .034 264.665);
    --color-white: #fff;
    --color-black: #000;
    --color-blue-600: oklch(.623 .214 259.815);
    --border: #0000001a;
    --spacing: .25rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --container-7xl: 80rem;
    --radius: .625rem;
    --radius-2xl: 1rem;
    --tw-ease: cubic-bezier(.4, 0, .2, 1);
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.advanced-product-section {
    padding-top: calc(var(--spacing) * 12);
    padding-bottom: calc(var(--spacing) * 12);
    background-color: transparent;
    opacity: 0;
    transform: translateY(30px);
	visibility: hidden;
}

.advanced-product-section.visible {
    opacity: 1;
    transform: none;
	visibility: visible;
    animation: productSectionFadeIn 0.8s ease-out 0.3s both;
}

.advanced-product-container {
    max-width: var(--container-7xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--spacing) * 4);
    padding-right: calc(var(--spacing) * 4);
}

.advanced-product-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: calc(var(--spacing) * 8);
    align-items: center;
    margin-top: calc(var(--spacing) * 8);
}

.advanced-product-content {
    opacity: 0;
    transform: translateY(20px);
}

.advanced-product-section.visible .advanced-product-content {
    opacity: 1;
    transform: none;
    animation: productContentSlideIn 0.8s ease-out 0.5s both;
}

.advanced-product-title {
    font-size: var(--text-3xl);
    line-height: var(--text-3xl--line-height);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: calc(var(--spacing) * 4);
    opacity: 0;
    transform: translateY(20px);
}

.advanced-product-section.visible .advanced-product-title {
    opacity: 1;
    transform: none;
    animation: productTitleSlideIn 0.6s ease-out 0.7s both;
}

.advanced-product-divider {
    width: calc(var(--spacing) * 16);
    height: calc(var(--spacing) * 1);
    background-color: var(--color-blue-600);
    border-radius: 9999px;
    margin-bottom: calc(var(--spacing) * 4);
    opacity: 0;
    transform: scaleX(0);
}

.advanced-product-section.visible .advanced-product-divider {
    opacity: 1;
    transform: scaleX(1);
    animation: productDividerFadeIn 0.8s ease-out 0.8s both;
}

.advanced-product-description {
    font-size: var(--text-base);
    line-height: var(--text-base--line-height);
    color: var(--color-gray-600);
    margin-bottom: calc(var(--spacing) * 4);
    opacity: 0;
    transform: translateY(20px);
}

.advanced-product-section.visible .advanced-product-description {
    opacity: 1;
    transform: none;
    animation: productDescriptionSlideIn 0.6s ease-out 0.9s both;
}

.advanced-product-features {
    list-style-type: disc;
    padding-left: calc(var(--spacing) * 6);
    opacity: 0;
    transform: translateY(20px);
}

.advanced-product-section.visible .advanced-product-features {
    opacity: 1;
    transform: none;
    animation: productFeaturesSlideIn 0.6s ease-out 1.1s both;
}

.advanced-product-features li {
    font-size: var(--text-sm);
    line-height: var(--text-sm--line-height);
    color: var(--color-gray-700);
    margin-bottom: calc(var(--spacing) * 3);
    opacity: 0;
    transform: translateY(20px);
}

.advanced-product-section.visible .advanced-product-features li {
    opacity: 1;
    transform: none;
    animation: productFeatureItemSlideIn 0.4s ease-out both;
}

.advanced-product-section.visible .advanced-product-features li:nth-child(1) { animation-delay: 1.3s; }
.advanced-product-section.visible .advanced-product-features li:nth-child(2) { animation-delay: 1.5s; }
.advanced-product-section.visible .advanced-product-features li:nth-child(3) { animation-delay: 1.7s; }
.advanced-product-section.visible .advanced-product-features li:nth-child(4) { animation-delay: 1.9s; }
.advanced-product-section.visible .advanced-product-features li:nth-child(5) { animation-delay: 2.1s; }
.advanced-product-section.visible .advanced-product-features li:nth-child(6) { animation-delay: 2.3s; }
.advanced-product-section.visible .advanced-product-features li:nth-child(7) { animation-delay: 2.5s; }

.advanced-product-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
}

.advanced-product-section.visible .advanced-product-image {
    opacity: 1;
    transform: none;
    animation: productImageSlideIn 0.8s ease-out 0.6s both;
}

.advanced-product-image-main {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.advanced-product-image:hover .advanced-product-image-main {
    transform: scale(1.02);
}

@media (width >= 40rem) {
    .advanced-product-section {
        padding-top: calc(var(--spacing) * 16);
        padding-bottom: calc(var(--spacing) * 16);
    }
    
    .advanced-product-container {
        padding-left: calc(var(--spacing) * 6);
        padding-right: calc(var(--spacing) * 6);
    }
    
    .advanced-product-grid {
        gap: calc(var(--spacing) * 10);
        margin-top: calc(var(--spacing) * 12);
    }
    
    .advanced-product-title {
        font-size: var(--text-4xl);
        line-height: var(--text-4xl--line-height);
    }
    
    .advanced-product-description {
        font-size: var(--text-lg);
        line-height: var(--text-lg--line-height);
    }
    
    .advanced-product-features li {
        font-size: var(--text-base);
        line-height: var(--text-base--line-height);
    }
    
    .advanced-product-image-main {
        height: 300px;
    }
}

@media (width >= 48rem) {
    .advanced-product-grid {
        gap: calc(var(--spacing) * 12);
        margin-top: calc(var(--spacing) * 12);
    }
    
    .advanced-product-title {
        font-size: var(--text-5xl);
        line-height: var(--text-5xl--line-height);
    }
    
    .advanced-product-description {
        font-size: var(--text-xl);
        line-height: var(--text-xl--line-height);
    }
    
    .advanced-product-image-main {
        height: 350px;
    }
}

@media (width >= 64rem) {
    .advanced-product-container {
        padding-left: calc(var(--spacing) * 8);
        padding-right: calc(var(--spacing) * 8);
    }
    
    .advanced-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .advanced-product-image-main {
        height: 400px;
    }
}

@media (max-width: 1023px) {
    .advanced-product-image,
    .advanced-product-image.lg\:order-first,
    .advanced-product-image.lg\:order-none {
        order: -1 !important;
    }
    
    .advanced-product-content,
    .advanced-product-content.lg\:order-first,
    .advanced-product-content.lg\:order-last {
        order: 0 !important;
    }
}

@keyframes productSectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productDividerFadeIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes productContentSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes productTitleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productDescriptionSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productFeaturesSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes productFeatureItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes productImageSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.lg\:order-first {
    order: -1;
}

.lg\:order-last {
    order: 9999;
}

.lg\:order-none {
    order: 0;
}
