/* AI Philosophy Section Styling */

.toonz-ai-philosophy-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    padding: 100px 0;
}

/* Parallax & Mouse BG Layers */
.aip-parallax-container {
    position: absolute;
    inset: -5%;
    z-index: 1;
    will-change: transform;
}

.aip-bg-layer {
    position: absolute;
    inset: -5%;
    /* Extra room for mouse move */
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Mouse Reflection Overlay */
.aip-reflection-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.toonz-ai-philosophy-wrapper:hover .aip-reflection-overlay {
    opacity: 1;
}

.aip-container {
    padding: 0 3%;
    position: relative;
    z-index: 10;
}

.aip-content-box {
    max-width: 700px;
}

/* --- Header --- */
.aip-accent-line {
    width: 40px;
    height: 4px;
    background: #F87510;
    margin-bottom: 20px;
}

.aip-headline {
    font-size: 85px;
    font-weight: 950;
    line-height: 0.95;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 60px;
    font-family: 'Outfit', sans-serif;
}

.aip-headline .accent {
    color: #F87510;
}

/* --- Points --- */
.aip-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}




.aip-point-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.aip-point-icon {
    flex: 0 0 50px;
    height: 50px;
    border: 1px solid rgba(248, 117, 16, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F87510;
    position: relative;
    z-index: 5;
    margin-right: 15px;
}

/* Divider between Icon and Text */
.aip-point-icon::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 50px;
    background: rgba(255, 111, 0, 0.582);
}

.aip-point-icon svg {
    width: 24px;
    height: 24px;
}

.aip-point-text {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    font-weight: 400;
}

.aip-point-text .accent {
    color: #F87510;
    font-weight: 600;
}

/* --- Responsiveness --- */
@media (max-width: 1200px) {
    .aip-headline {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .toonz-ai-philosophy-wrapper {
        min-height: auto;
        padding: 80px 0;
    }

    .aip-headline {
        font-size: 42px;
    }

    .aip-point-text {
        font-size: 18px;
    }
}