/* 
   VIVO X300 Ultra - Official VCCorp Standard CSS
   Design System, System Overrides, and Pixel-Perfect Absolute Layout
*/

/* ==========================================================================
   1. VCCORP CMS SYSTEM OVERRIDES & SYNCHRONIZATION
   ========================================================================== */

html {
    overflow-y: scroll;
}

/* 1.1. Background Sync - Force matching color on all platform wrapper layers */
html,
body,
#kbwcs-container,
.sp-detail,
.magazine-container,
.kbw-content,
.body-wrapper,
[id^='kbwcs-'] {
    background-color: #000000 !important;
}

/* 1.2. Sticky Header Safe Area */
#header.nav-down,
#header,
.sp-sticky-header {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999999 !important;
    pointer-events: auto !important;
}

.magazine-container,
.body-wrapper {
    padding-top: 44px !important;
    /* Reserve 44px top height for site menu */
}

/* 1.3. Hide Automatic CMS Source Info Box */
div[data-sourcename],
.news_source,
.k14-source-info {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* ==========================================================================
   2. DESIGN SYSTEM & TYPOGRAPHY
   ========================================================================== */
:root {
    --bg-black: #000000;
    --text-primary: #dbdecf;
    --text-muted: rgba(219, 222, 207, 0.6);
    --text-muted-dark: rgba(219, 222, 207, 0.4);
    --accent-gold: #fff9eb;
    --accent-gold-glow: rgba(255, 249, 235, 0.15);

    /* Variable custom font and fallbacks */
    --font-serif: 'ABC Arizona Flare', serif;
    --font-sans: 'Px Grotesk VN', sans-serif;
    --font-mono: 'Px Grotesk VN', monospace;
}

/* Load local fonts relative to this stylesheet (css/style.css -> ../Font) */
@font-face {
    font-family: 'ABC Arizona Flare';
    src: url('../Font/ABCArizonaFlare-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Px Grotesk VN';
    src: url('../Font/PxGroteskVN-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Reset & Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}



/* Ambient glow system */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle 400px at 50% 30%, rgba(219, 222, 207, 0.04), transparent 80%),
        radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 249, 235, 0.05), transparent 70%);
    transition: background 0.1s ease-out;
}

/* Main wrapper */
.magazine-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.magazine-frame {
    width: 1920px;
    height: 4640px;
    background-color: var(--bg-black);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    transform-origin: top left;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transition: transform 0.1s ease-out;
}

/* ==========================================================================
   SECTION 1: COVER HEADER (PIXEL-PERFECT ABSOLUTE FIGMA LAYOUT)
   ========================================================================== */
.section-cover {
    position: absolute;
    width: 1920px;
    height: 1145px;
    top: 0;
    left: 0;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    background-color: #000000;
}

/* Background Bright Radial Glow - Fades in at 1.6s delay */
.section-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 160% 15% at 50% 960px,
        rgba(250, 255, 247, 1) 0%,
        rgba(243, 255, 235, 0.35) 56.4%,
        rgba(243, 255, 235, 0) 100%);
    z-index: 1;
    opacity: 0;
    animation: fade-in-glow 2.5s ease-out 1.6s forwards;
    pointer-events: none;
}



/* Perspective columns/lines background (3D Space Setup) */
.bg-perspective-container {
    position: absolute;
    width: 1920px;
    height: 1140px;
    /* Extended to match section-cover height so its bottom edge is pushed down and hidden under the bottom black fade */
    left: 0;
    top: 0;
    z-index: 3;
    pointer-events: none;
    perspective: 900px;
    /* Stronger, more dramatic 3D perspective depth */
    transform-style: preserve-3d;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}




/* 3D Orbiting Carousel Wrapper */
.carousel-3d-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    pointer-events: none;
    z-index: 2;
}

/* Individual 3D rotating cards (Configured to map exactly to the design's perspective tunnel panels) */
.carousel-card {
    position: absolute;
    width: 230px;
    aspect-ratio: 2 / 3;
    /* height auto-follows width, always 2:3 */
    left: 845px;
    top: 260px;
    transform-style: preserve-3d;
    pointer-events: none;
    transition: box-shadow 0.4s ease, filter 0.4s ease;
    will-change: transform;
}

/* Inner card content wrapper with D9D9D9 background mapping to design panels */
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #D9D9D9;
    /* Design panel solid light gray color */
    border-radius: 0px;
    /* Removed border-radius for sharp, clean rectangular panels */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 16px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(0, 0, 0, 0.15);
    /* Clean dark-inset border style */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, background-color 0.5s ease;
    transform-style: preserve-3d;
}


/* Card image layer — full visible photo */
.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}


/* CENTRAL CAMERA MODULE */
.camera-module-group {
    position: absolute;
    width: 1227px;
    height: 902px;
    left: calc(50% - 599.5px);
    top: 224px;
    z-index: 4;
    cursor: default;
    opacity: 0;
    /* No overflow:hidden — camera-mask-group handles its own clipping */
    transform: scale(1.0) translateY(40px);
    animation: camera-entrance 2.2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes camera-entrance {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1.0) translateY(0);
    }
}


/* Masked camera details - PNG texture loaded directly */
.camera-mask-group {
    position: absolute;
    width: 1227px;
    height: 615px;
    left: 345px;
    top: 557px;
    transform: translate(-367.29px, -224px);
    overflow: hidden;
}

.camera-masked-wrap {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.camera-vector-img {
    position: absolute;
    width: 1174.743px;
    height: 901.572px;
    left: 22.83px;
    top: -333px;
    max-width: none;
    opacity: 1 !important;
    /* Đảm bảo hình hiển thị 100% độ rõ nét, không bị mờ */
    transition: filter 0.5s ease;
}



.header-text-group {
    position: absolute;
    width: 100%;
    top: 160px;
    left: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    transform-origin: center center;
    animation: title-cinematic-intro 3.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes title-cinematic-intro {
    0% {
        transform: translateY(var(--title-init-y, calc(50vh - 280px))) scale(1.06);
    }

    50% {
        transform: translateY(var(--title-init-y, calc(50vh - 280px))) scale(1.06);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.header-subtitle-top {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--text-muted);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(-20px);
    animation: fade-in-up 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header-title {
    font-family: var(--font-serif);
    font-size: 117.773px;
    font-weight: normal;
    /* Prevent synthetic browser bolding! */
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -4.7109px;
    margin-top: 2px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: fade-in-up 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    font-style: normal;
    font-variation-settings: 'wght' 350, 'ital' 0;
    /* Custom native variable axis weight */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-subtitle-bottom {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--text-muted);
    line-height: 1.3;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Animations */
@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ambient-bottom-fade {
    position: absolute;
    width: 100%;
    height: 197px;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 8;
    pointer-events: none;
}


/* ==========================================================================
   SECTION 2: CREDITS & DIAL WIDGET
   ========================================================================== */
.section-credits {
    position: absolute;
    width: 1640px;
    height: 210px;
    left: 140px;
    top: 1180px;
    display: flex;
    gap: 142px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Credit Columns */
.credit-column {
    width: 320px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.credit-block {
    text-align: center;
    font-family: var(--font-sans);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.credit-role {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.credit-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s, transform 0.3s;
}



/* CAMERA DIAL WIDGET (STATIC) */
.interactive-dial-widget {
    position: relative;
    width: 200px;
    height: 209px;
    flex-shrink: 0;
    cursor: default;
}


/* ==========================================================================
   SECTION 3: NARRATIVE QUOTE
   ========================================================================== */
.section-quote {
    position: absolute;
    width: 100%;
    top: 1429px;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.editorial-quote-text {
    width: 900px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-primary);
    letter-spacing: 0.2px;
    transition: color 0.3s;
    text-wrap: balance;
    text-wrap: pretty;
}




/* ==========================================================================
   SECTION 3.2: FULLWIDTH IMAGE
   ========================================================================== */
.editorial-flow-content {
    position: absolute;
    width: 1920px;
    top: 1640px;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.section-fullwidth-image {
    position: relative;
    width: 1920px;
    height: auto;
    overflow: hidden;
}

.section-fullwidth-auto {
    position: relative;
    width: 1920px;
    height: auto;
    overflow: hidden;
}

.section-fullwidth-auto img {
    width: 100%;
    height: auto;
    display: block;
}

.fullwidth-img {
    width: 100%;
    height: auto;
    display: block;
}

.fullwidth-img-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    max-width: 800px;
}

/* ==========================================================================
   SECTION 3.5: SPLIT CONTENT LAYOUT (2/3 and 1/3)
   ========================================================================== */
.section-split-content {
    position: relative;
    width: 1920px;
    height: auto;
    min-height: 2100px;
    display: flex;
    overflow: hidden;
}

/* Left Column (2/3 Width) - Designed to be 1080px (full screen height) and translated via JS */
/* Native sticky wrapper — lives outside the scaled frame */
.split-left-native-wrapper {
    position: absolute;
    left: 0;
    width: 1152px;
    z-index: 50;
    pointer-events: none;
    /* let clicks pass through to background */
    /* Initially off-screen to prevent flash before JS positions it */
    visibility: hidden;
}

/* Native sticky element — uses browser's compositor thread, zero JS lag */
.split-left-native-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    pointer-events: auto;
    /* re-enable clicks for buttons inside */
}

/* Placeholder inside section: reserves the 2/3 space so right col stays at correct position */
.split-left-placeholder {
    width: 1152px;
    height: 100%;
    min-height: 2100px;
    flex-shrink: 0;
    background: transparent;
    pointer-events: none;
}

.split-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-left-overlay-top {
    position: absolute;
    top: 80px;
    left: 48px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 2;
}

.left-overlay-span {
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.left-overlay-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: normal;
    margin: 0;
    letter-spacing: -1px;
}

.global-split-left-bottom-bar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 1152px;
    height: 60px;
    background: #000000;
    border-top: 1px solid rgba(255, 249, 235, 0.1);
    box-sizing: border-box;
    padding: 0 24px;
    z-index: 9998;
    opacity: 1;
    visibility: visible;
    overflow: visible !important;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-split-left-bottom-bar.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(100%) !important;
}

.bottom-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: visible;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-clock-icon {
    width: 16px;
    height: 16px;
}

.bar-clock-icon circle, .bar-clock-icon path {
    stroke: #FFF9EB;
}

.bar-time {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #FFF9EB;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-divider {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 249, 235, 0.25);
    user-select: none;
}

.bar-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 249, 235, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 680px;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-bar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.bottom-bar-right .bar-divider {
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 249, 235, 0.15);
    margin: 0;
}

.bottom-bar-right .nav-arrow {
    background: none;
    border: none;
    color: #FFF9EB;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.bottom-bar-right .nav-arrow:hover:not(:disabled) {
    opacity: 1;
    transform: scale(1.1);
}

.bottom-bar-right .nav-arrow:disabled {
    cursor: not-allowed;
}

.bottom-bar-right .nav-arrow svg path {
    stroke: #FFF9EB;
}

/* Right Column (40% Width) - Scrolling Column */
.split-right-col {
    width: 768px;
    height: auto;
    min-height: 2100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 66px 0;
    gap: 42px;
    z-index: 1;
    background-color: #dbdecf;
    /* Apply beige background to entire right column */
}

.section-inline-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.info-meta-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(18, 18, 18, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.info-meta-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-dial-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.info-dial-widget.visible {
    opacity: 1;
    transform: translateY(0);
}

.dial-side-text {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2px;
    color: #121212;
    width: 140px;
    opacity: 0.8;
}

.dial-side-text.text-left {
    text-align: center;
}

.dial-side-text.text-right {
    text-align: center;
}

.dial-svg-wrapper {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dial-svg-wrapper svg {
    width: 100%;
    height: 100%;
}

.info-quote-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    /* 100% */
    color: #6F7169;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: -1.92px;
    width: 640px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.info-quote-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-highlight {
    color: #000000;
}


/* Figma Content Blocks */
.right-col-paragraph {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.5;
    color: #121212;
    width: 640px;
    text-align: left;
}

.right-col-image-block {
    width: 640px !important;
    position: relative;
    overflow: hidden;
}

.right-col-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CONTENT SLIDER WIDGET (CỘT PHẢI)
   ========================================================================== */
.content-slider {
    width: 640px !important;
    position: relative;
    overflow: hidden;
    margin: 24px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.slider-slide {
    min-width: 100%;
    height: auto;
}

.slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 16px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav svg {
    width: 16px;
    height: auto;
}

.slider-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 1);
}


/* Height classes no longer used as images are now auto-height */
.h-525 {
    height: auto;
}

.h-930 {
    height: auto;
}

.h-auto-aspect {
    height: auto;
}

@keyframes card-inner-entrance {
    from {
        opacity: 0;
        transform: scale(0.15);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   RESPONSIVENESS AND AUTO-SCALING STYLES
   ========================================================================== */
@media (max-width: 1920px) {

    /* Main wrapper allows the scaling frame to overflow during scaling without creating vertical bars */
    .magazine-container {
        overflow-x: hidden;
        overflow-y: visible;
        padding: 0;
    }
}

/* SCROLL DOWN INDICATOR */
.scroll-down-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    animation: fade-in-scroll-indicator 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    visibility: visible;
}

.scroll-down-indicator.hidden {
    opacity: 0 !important;
    transform: translate(-50%, -20px) !important;
    visibility: hidden;
    pointer-events: none !important;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3.5px;
    color: rgba(255, 249, 235, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
}

.scroll-arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll-indicator-bounce 2s infinite ease-in-out;
}

@keyframes fade-in-scroll-indicator {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes scroll-indicator-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ==========================================================================
   4. RESPONSIVE STACKING AND SCALING OVERRIDES (MOBILE & TABLET <= 1024px)
   ========================================================================== */
.split-left-mobile-content {
    display: none;
}

@media (max-width: 1024px) {
    /* 4.1. Hide Desktop Sticky Wrappers & Navigation Bar */
    .split-left-native-wrapper {
        display: none !important;
    }
    
    .global-split-left-bottom-bar {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* 4.2. Reflow Split Section Grid to Vertical Column Stacking */
    .section-split-content {
        flex-direction: column !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .split-left-placeholder {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 10 !important;
        flex-shrink: 0 !important;
        pointer-events: auto !important;
    }
    
    .split-left-mobile-content {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
    }
    
    .split-left-mobile-content .split-left-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .split-left-mobile-content .split-left-overlay-top {
        position: absolute !important;
        top: 60px !important;
        left: 60px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        z-index: 2 !important;
    }
    
    .split-left-mobile-content .left-overlay-span {
        font-family: var(--font-sans) !important;
        font-size: 32px !important;
        color: rgba(255, 255, 255, 0.75) !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        line-height: 1 !important;
    }
    
    .split-left-mobile-content .left-overlay-title {
        font-family: var(--font-serif) !important;
        font-size: 72px !important;
        color: #ffffff !important;
        font-weight: normal !important;
        margin: 0 !important;
        letter-spacing: -1px !important;
    }
    
    /* 4.3. Expand Split Right Column and Scale Typography (to compensate for viewport scaleFactor) */
    .split-right-col {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 80px 0 !important;
        gap: 60px !important;
    }
    
    .right-col-paragraph {
        width: 1720px !important;
        font-size: 55px !important;
        line-height: 1.65 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .info-quote-title {
        width: 1720px !important;
        font-size: 85px !important;
        line-height: 1.2 !important;
        letter-spacing: -2px !important;
        margin: 0 auto 60px auto !important;
    }
    
    .right-col-image-block {
        width: 1720px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .content-slider {
        width: 1720px !important;
        margin: 60px auto !important;
    }
    
    .info-meta-header {
        width: 1720px !important;
        font-size: 24px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .info-dial-widget {
        transform: scale(1.6) !important;
        margin: 60px auto !important;
    }
    
    .section-inline-img {
        width: 1720px !important;
        margin: 60px auto !important;
    }
}

/* 4.4. Phone Viewport Optimizations (<= 600px Screen Width) */
@media (max-width: 600px) {
    .split-left-mobile-content .split-left-overlay-top {
        top: 80px !important;
        left: 80px !important;
    }
    
    .split-left-mobile-content .left-overlay-span {
        font-size: 40px !important;
    }
    
    .split-left-mobile-content .left-overlay-title {
        font-size: 96px !important;
    }
    
    .right-col-paragraph {
        width: 1800px !important;
        font-size: 72px !important;
    }
    
    .info-quote-title {
        width: 1800px !important;
        font-size: 110px !important;
    }
    
    .right-col-image-block {
        width: 1800px !important;
    }
    
    .content-slider {
        width: 1800px !important;
    }
    
    .info-meta-header {
        width: 1800px !important;
        font-size: 32px !important;
    }
    
    .info-dial-widget {
        transform: scale(2.0) !important;
        margin: 80px auto !important;
    }
    
    .section-inline-img {
        width: 1800px !important;
    }
}

@keyframes fade-in-glow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}