        /* --- 1. FONTS & SETUP --- */
        :root {
            --bg-color: #030305;
            --bento-bg: rgba(10, 10, 12, 0.6); /* Матовое стекло */
            --border-color: rgba(255, 255, 255, 0.15); /* Тонкие ювелирные рамки */
            --text-main: #e0e0e0;
            --text-muted: rgba(255, 255, 255, 0.5);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            cursor: none;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        body::-webkit-scrollbar { display: none; }

        /* --- 2. CUSTOM CURSOR --- */
        .cursor {
            width: 30px; height: 30px;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 50%; position: fixed;
            pointer-events: none; z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
            mix-blend-mode: difference; 
        }
        .cursor-dot {
            width: 4px; height: 4px;
            background: #fff;
            border-radius: 50%; position: fixed;
            pointer-events: none; z-index: 10000;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease; 
        }

        /* --- 3. BACKGROUND --- */
        #fluid-canvas {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none;
            background: #030305;
            transition: opacity 0.8s ease;
        }

        /* --- 4. LAYOUT & TRANSITIONS --- */
        .container {
            width: 85%; max-width: 1400px; margin: 0 auto; 
            z-index: 10; display: flex; flex-direction: column;
            transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.8s ease, filter 0.8s ease;
            transform-origin: center center;
            padding-bottom: 100px;
        }

        .container.entering {
            transform: translate3d(var(--enter-offset, 0), 0, 0);
            opacity: 0;
            filter: blur(10px);
        }
        .container.exiting-zoom { transform: scale(4); opacity: 0; filter: blur(15px); }
        .container.exiting-left { transform: translate3d(-12vw, 0, 0); opacity: 0; filter: blur(10px); }
        .container.exiting-right { transform: translate3d(12vw, 0, 0); opacity: 0; filter: blur(10px); }
        body.exiting #fluid-canvas { opacity: 0; }

        /* --- 5. NAVIGATION (PILL-STYLE) --- */
        .header-ui {
            position: fixed; top: 40px; left: 5%; width: 90%;
            display: flex; justify-content: space-between; align-items: flex-start;
            z-index: 100; pointer-events: none;
        }
        .header-ui > * { pointer-events: auto; }
        
        .pill-box {
            border: 1px solid var(--border-color);
            border-radius: 40px;
            padding: 10px 25px;
            display: inline-flex; align-items: center; justify-content: center;
            backdrop-filter: blur(10px); background: rgba(3,3,5,0.4);
            text-decoration: none; color: var(--text-main);
            transition: 0.4s ease;
        }
        .pill-box:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

        .logo-group { display: flex; align-items: center; gap: 15px; }
        .agency-tag { font-family: 'Rajdhani', sans-serif; letter-spacing: 2px; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; }

        .nav-arrow-left {
            position: fixed; top: 50%; left: 4%; transform: translateY(-50%);
            width: 60px; height: 60px; border: 1px solid var(--border-color);
            border-radius: 50%; display: flex; justify-content: center; align-items: center;
            text-decoration: none; color: var(--text-muted);
            z-index: 100; transition: all 0.4s ease; backdrop-filter: blur(10px); background: rgba(3,3,5,0.4);
        }
        .nav-arrow-left:hover {
            border-color: #fff; color: #fff;
            transform: translateY(-50%) translateX(-10px);
        }

        /* Правая стрелка - ювелирный круг */
        .nav-arrow-right {
            position: fixed; top: 50%; right: 4%; transform: translateY(-50%);
            width: 60px; height: 60px; border: 1px solid var(--border-color);
            border-radius: 50%; display: flex; justify-content: center; align-items: center;
            text-decoration: none; color: var(--text-muted); 
            z-index: 100; transition: all 0.4s ease; backdrop-filter: blur(10px); background: rgba(3,3,5,0.4);
        }
        .nav-arrow-right:hover {
            border-color: #fff; color: #fff;
            transform: translateY(-50%) translateX(10px);
        }

        /* Нижнее меню в стиле капсулы */
        .bottom-nav-wrap {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 100;
        }
        .bottom-nav {
            position: relative;
            display: flex; gap: 10px;
            background: rgba(10,10,12,0.6); padding: 8px;
            border-radius: 50px; border: 1px solid var(--border-color); backdrop-filter: blur(20px);
            overflow: hidden;
        }
        .music-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: rgba(10,10,12,0.6);
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(20px);
            transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, transform 0.35s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            flex-shrink: 0;
        }
        .music-toggle:hover {
            border-color: rgba(255,255,255,0.65);
            color: #fff;
            transform: translateY(-1px);
        }
        .music-toggle:focus-visible {
            outline: 1px solid rgba(255,255,255,0.8);
            outline-offset: 2px;
        }
        .music-icon {
            width: 18px;
            height: 18px;
            position: absolute;
            transition: opacity 0.28s ease, transform 0.28s ease;
        }
        .music-icon-on {
            opacity: 0;
            transform: scale(0.8);
        }
        .music-icon-off {
            opacity: 1;
            transform: scale(1);
        }
        .music-toggle.is-playing .music-icon-on {
            opacity: 1;
            transform: scale(1);
        }
        .music-toggle.is-playing .music-icon-off {
            opacity: 0;
            transform: scale(0.8);
        }
        .music-toggle.is-playing {
            color: #fff;
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.06);
        }
        .bottom-nav a { 
            text-decoration: none; color: var(--text-muted); transition: 0.4s; 
            font-family: 'Rajdhani', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
            padding: 10px 25px; border-radius: 30px; border: 1px solid transparent;
            position: relative;
            z-index: 2;
        }
        .bottom-nav a:hover { color: #fff; }
        .bottom-nav a.active { border-color: transparent; color: #fff; }
        .nav-outline-track {
            position: absolute;
            top: 8px;
            bottom: 8px;
            left: 0;
            width: 0;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 30px;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transform: translateX(0);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- 6. TYPOGRAPHY & BLOCKS --- */
        h1, h2, h3, .serif-font { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1; }
        p { font-size: 1.2rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }
        
        /* Лейблы как на референсе */
        .label { 
            font-family: 'Rajdhani', sans-serif; font-size: 0.75rem; letter-spacing: 2px; 
            color: var(--text-muted); text-transform: uppercase; margin-bottom: 30px; display: inline-block;
            border: 1px solid var(--border-color); padding: 6px 16px; border-radius: 30px;
        }

        .scroll-reveal {
            opacity: 0; transform: translateY(40px); filter: blur(5px);
            transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
        }
        .scroll-reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

        /* Hero */
        .hero {
            height: 90vh; display: flex; flex-direction: column; justify-content: center;
        }
        .hero h1 { font-size: 7vw; margin-bottom: 30px; color: #fff; letter-spacing: -2px; }
        .hero h1 i { font-style: italic; color: rgba(255,255,255,0.7); }
        .hero p.subtitle { font-size: 1.4rem; max-width: 600px; color: #fff; letter-spacing: 0.5px; font-family: 'Rajdhani', sans-serif; }
        .hero--center { align-items: center; text-align: center; }

        .character-seq-wrap {
            position: relative;
            height: 915vh;
            margin-bottom: 120px;
        }
        .character-seq-sticky {
            position: sticky;
            top: 15vh;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .character-seq-frame {
            width: min(760px, 64vw);
            aspect-ratio: 1 / 1;
            position: relative;
            transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
            will-change: transform;
        }
        .character-seq-float {
            width: 100%;
            height: 100%;
            position: relative;
            animation: character-float 6.5s ease-in-out infinite;
        }
        .character-seq-stage {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 42px;
            background: transparent;
            overflow: visible;
            backdrop-filter: none;
            transition: transform 0.2s ease-out;
            position: relative;
            z-index: 2;
        }
        #character-seq-canvas {
            width: 100%;
            height: 100%;
            display: block;
            transition: none;
        }
        .disassembly-layer {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: none;
            pointer-events: none;
        }
        .disassembly-part {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transform-origin: center center;
            will-change: transform, filter, opacity;
        }
        .arm-fire-frame {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            pointer-events: none;
            z-index: 3;
            transform-origin: center center;
            will-change: opacity, transform;
        }
        .sequence-notes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }
        .sequence-note {
            position: absolute;
            color: rgba(255, 255, 255, 0.75);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            font-weight: 500;
            letter-spacing: 4.2px;
            text-transform: uppercase;
            white-space: nowrap;
            opacity: 0;
            filter: blur(14px);
            transform: translateY(10px);
            transition: opacity 0.35s linear, filter 0.35s linear, transform 0.35s linear;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
        }
        .sequence-note.note-1 { left: 66%; right: auto; top: 16%; text-align: left; }
        .sequence-note.note-2 { left: 13%; top: 45%; }
        .sequence-note.note-3 { left: 66%; right: auto; top: 61%; text-align: left; }
        .explosion-cards {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: min(980px, 88vw);
            height: min(60vh, 590px);
            z-index: 4;
            pointer-events: none;
        }
        .cards-progress {
            position: absolute;
            left: -38px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 11px;
            pointer-events: none;
            z-index: 12;
            opacity: 0;
            transition: opacity 0.24s ease;
        }
        .explosion-cards.has-progress .cards-progress {
            opacity: 1;
        }
        .cards-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.35);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
            transform: scale(0.95);
            transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
            opacity: 0.8;
        }
        .cards-dot.is-active {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.22);
            transform: scale(1.8);
            opacity: 1;
        }
        .card-column {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            opacity: 0;
            transform: translateY(26px) scale(0.9);
            filter: blur(20px);
            will-change: transform, filter, opacity;
            pointer-events: none;
            z-index: 1;
            width: min(980px, 88vw);
            max-width: 980px;
            margin: 0 auto;
            justify-content: center;
            padding-top: 0;
        }
        .card-column.is-active {
            pointer-events: auto;
        }
        .explosion-card {
            border: none;
            border-radius: 30px;
            background: transparent;
            backdrop-filter: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transform: translateY(0) scale(1);
            will-change: transform;
        }
        .explosion-card-transparent {
            background: transparent;
            backdrop-filter: none;
            padding: 0;
        }
        .card-media {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
        }
        .card-media-transparent {
            background: transparent;
        }
        .card-media-video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        .card-media-lottie {
            display: block;
            width: 100%;
            height: 100%;
        }
        .card-media-lottie-shell {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 14px;
            background: transparent;
        }
        .mood-fallback {
            position: absolute;
            inset: 0;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(10px, 1.2vw, 18px);
            font-size: clamp(2.2rem, 3vw, 3rem);
            line-height: 1;
            opacity: 0.95;
            transition: opacity 0.18s ease;
            pointer-events: none;
        }
        .card-media-lottie-shell.is-ready .mood-fallback {
            opacity: 0;
        }
        .card-media-lottie-shell .card-media-lottie {
            position: absolute;
            inset: 0;
            z-index: 2;
            transform: scale(1.38) translateY(-4%);
            transform-origin: center center;
            opacity: 1;
        }
        .card-media-lottie-shell .card-media-lottie svg,
        .card-media-lottie-shell .card-media-lottie canvas {
            width: 100% !important;
            height: 100% !important;
            display: block;
        }
        .mood-hint {
            position: absolute;
            left: 14px;
            top: 12px;
            z-index: 4;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: rgba(12, 14, 20, 0.62);
            color: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.86rem;
            letter-spacing: 1.1px;
            text-transform: uppercase;
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
        }
        .mood-hint svg {
            width: 13px;
            height: 13px;
            opacity: 0.9;
        }
        .card-media-lottie-shell.is-hovering .mood-hint,
        .card-media-lottie-shell:hover .mood-hint {
            opacity: 0;
            transform: translateY(-4px);
        }
        .mood-hotspots {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            z-index: 3;
        }
        .mood-hotspot {
            border: none;
            margin: 0;
            padding: 0;
            background: transparent;
            cursor: pointer;
        }
        .card-media-empty {
            background: rgba(255, 255, 255, 0.02);
        }
        .explosion-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.7rem, 2.2vw, 2.35rem);
            letter-spacing: -0.4px;
            text-transform: none;
            line-height: 0.98;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.92);
            margin: 0;
        }
        .card-column p {
            margin: 0;
            font-size: clamp(1.02rem, 1.2vw, 1.2rem);
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.88);
            max-width: 100%;
            margin-bottom: 4px;
            padding: 0;
            background: transparent;
            border: none;
            backdrop-filter: none;
            white-space: nowrap;
            overflow: visible;
            text-overflow: clip;
            transform-origin: left center;
            will-change: transform;
        }
        .character-details-block {
            margin: 40px 0 160px;
            width: min(1140px, 96vw);
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            gap: 120px;
        }
        .character-detail-row {
            display: flex;
            align-items: center;
            gap: 80px;
            justify-content: space-between;
        }
        .character-detail-row.reverse {
            flex-direction: row-reverse;
        }
        .character-detail-text {
            flex: 1;
            max-width: 520px;
        }
        .character-detail-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 4vw, 4.6rem);
            letter-spacing: -0.8px;
            line-height: 0.98;
            color: #fff;
            margin: 0 0 24px;
        }
        .character-detail-text p {
            margin: 0;
            font-size: 1.14rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.86);
            max-width: 44ch;
        }
        .character-detail-visual {
            flex: 1.35;
            max-width: 860px;
        }
        .detail-placeholder-card {
            padding: 14px;
            border-radius: 32px;
        }
        .detail-placeholder-card .card-media {
            aspect-ratio: 16 / 9;
            border-radius: 22px;
        }
        .character-archive {
            width: min(1140px, 96vw);
            margin: 0 auto 150px;
        }
        .character-archive h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 5vw, 4rem);
            margin-bottom: 56px;
            text-align: center;
            font-weight: 300;
        }
        .character-archive h3 i {
            font-style: italic;
            color: rgba(255, 255, 255, 0.65);
        }
        .works-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 40px;
        }
        .work-item {
            text-decoration: none;
            display: block;
        }
        .archive-media {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.05);
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease;
        }
        .archive-media-has-video {
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .archive-media-file {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .work-item:hover .archive-media {
            transform: scale(1.02);
            background: rgba(255, 255, 255, 0.08);
        }
        .work-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            color: #fff;
            letter-spacing: 2px;
            margin-top: 20px;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .work-item:hover .work-title {
            color: var(--text-muted);
        }
        .cta-section {
            text-align: center;
            padding: 100px 0;
        }
        .cta-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 6rem;
            margin-bottom: 50px;
            font-weight: 300;
            color: #fff;
            line-height: 0.95;
        }
        .footer-cta {
            display: inline-block;
            padding: 15px 40px;
            color: #fff;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 40px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: 0.4s;
            background: transparent;
            backdrop-filter: blur(10px);
        }
        .footer-cta:hover {
            color: #000;
            background: #fff;
        }

        .performance-hero {
            min-height: auto;
            justify-content: flex-start;
            gap: 18px;
            margin-bottom: 72px;
            padding-top: clamp(140px, 18vh, 200px);
        }
        .performance-hero h1 {
            margin-bottom: 0;
        }
        .performance-hero .subtitle {
            max-width: 560px;
            font-size: 1.2rem;
        }
        .performance-hero-media {
            width: min(460px, 64vw);
            padding: 14px;
            border-radius: 32px;
        }
        .performance-hero-media .card-media {
            border-radius: 20px;
        }

        .performance-placeholder {
            position: relative;
            overflow: hidden;
        }
        .performance-placeholder::before {
            content: attr(data-label);
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.58);
        }
        .performance-placeholder.ph-9x16 { aspect-ratio: 9 / 16 !important; }
        .performance-placeholder.ph-4x5 { aspect-ratio: 4 / 5 !important; }
        .performance-placeholder.ph-1x1 { aspect-ratio: 1 / 1 !important; }

        .performance-montage {
            margin: 0 auto 110px;
            width: min(1140px, 96vw);
        }
        .performance-wall-shell {
            aspect-ratio: 4 / 5;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 36px;
            padding: 20px;
            background: rgba(8, 8, 12, 0.58);
            backdrop-filter: blur(12px);
            overflow: hidden;
        }
        .performance-wall {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-template-rows: repeat(3, minmax(0, 1fr));
            gap: 14px;
            height: 100%;
        }
        .performance-wall-item {
            padding: 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .performance-wall-item .card-media {
            border-radius: 14px;
            width: min(100%, 260px);
            max-height: 100%;
        }

        .performance-format {
            width: min(1140px, 96vw);
            margin: 0 auto 90px;
        }

        .performance-principles {
            width: min(1140px, 96vw);
            margin: 0 auto 72px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }
        .performance-principle {
            padding: 18px;
            border-radius: 22px;
        }
        .performance-principle h3 {
            margin: 0 0 10px;
        }
        .performance-principle p {
            margin: 0;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
            line-height: 1.4;
        }

        .performance-capabilities {
            width: min(1140px, 96vw);
            margin: 0 auto 84px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }
        .performance-capability {
            padding: 12px;
            border-radius: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .performance-capability h3 {
            margin: 0 6px 0;
            font-size: clamp(1.4rem, 2vw, 2rem);
        }
        .performance-capability .card-media {
            border-radius: 14px;
        }

        .performance-details {
            margin-top: 0;
            margin-bottom: 80px;
            gap: 56px;
        }
        .performance-details .character-detail-text p {
            max-width: 38ch;
            font-size: 1rem;
        }
        .performance-archive {
            margin-bottom: 72px;
        }

        .performance-archive-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }
        .performance-archive-grid .archive-media {
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .performance-archive + .cta-section {
            padding: 52px 0 20px;
        }
        .performance-archive + .cta-section h2 {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            margin-bottom: 28px;
        }

        @media (max-width: 1024px) {
            .bottom-nav-wrap {
                bottom: 22px;
                gap: 8px;
            }
            .music-toggle {
                width: 40px;
                height: 40px;
            }
            .character-seq-wrap { height: 815vh; }
            .character-seq-sticky { top: 18vh; height: 58vh; }
            .character-seq-frame { width: min(86vw, 560px); }
            .character-seq-stage { border-radius: 28px; }
            .sequence-note { font-size: 1.05rem; letter-spacing: 2.5px; }
            .sequence-note.note-1 { left: 64%; right: auto; top: 22%; text-align: left; }
            .sequence-note.note-2 { left: 16%; top: 46%; }
            .sequence-note.note-3 { left: 64%; right: auto; top: 54%; text-align: left; }
            .explosion-cards {
                width: 88vw;
                height: min(54vh, 470px);
            }
            .cards-progress {
                left: -22px;
                gap: 9px;
            }
            .cards-dot {
                width: 7px;
                height: 7px;
            }
            .card-column {
                width: 88vw;
                max-width: 88vw;
                justify-content: center;
                padding-top: 0;
            }
            .explosion-card {
                border-radius: 22px;
                padding: 0;
            }
            .card-media {
                border-radius: 16px;
            }
            .card-column p {
                font-size: clamp(1.02rem, 1.2vw, 1.2rem);
                line-height: 1.45;
                margin-top: 6px;
                padding: 0;
            }
            .character-details-block {
                margin: 20px 0 100px;
                gap: 56px;
                width: 100%;
            }
            .character-detail-row,
            .character-detail-row.reverse {
                flex-direction: column;
                gap: 24px;
            }
            .character-detail-text,
            .character-detail-visual {
                width: 100%;
                max-width: 100%;
            }
            .character-archive {
                width: 100%;
                margin-bottom: 100px;
            }
            .character-archive h3 {
                margin-bottom: 34px;
            }
            .works-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .performance-hero {
                margin-bottom: 56px;
                padding-top: 130px;
            }
            .performance-hero-media {
                width: min(82vw, 420px);
            }
            .performance-montage,
            .performance-format,
            .performance-principles,
            .performance-capabilities {
                width: 100%;
                margin-bottom: 68px;
            }
            .performance-wall-shell {
                padding: 12px;
                border-radius: 26px;
            }
            .performance-wall {
                gap: 10px;
            }
            .performance-wall-item {
                padding: 8px;
            }
            .performance-principles,
            .performance-capabilities,
            .performance-archive-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .performance-capability h3 {
                margin-left: 0;
                margin-right: 0;
            }
            .performance-details {
                margin-bottom: 56px;
                gap: 36px;
            }
            .performance-archive {
                margin-bottom: 52px;
            }
            .performance-archive + .cta-section {
                padding-top: 34px;
            }
        }

        @keyframes character-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

/* --- PERFORMANCE PAGE REDESIGN --- */
.pf-hero {
    position: relative;
    min-height: 92vh;
    border-radius: 42px;
    overflow: hidden;
    margin-top: 90px;
    margin-bottom: 130px;
    justify-content: flex-end;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 12, 0.45);
}
.pf-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.85) contrast(1.1);
}
.pf-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(3, 3, 5, 0.9), rgba(3, 3, 5, 0.35) 42%, rgba(3, 3, 5, 0.25));
}
.pf-hero-content {
    position: relative;
    z-index: 2;
}
.pf-hero h1 {
    margin: 8px 0 0;
    font-size: clamp(3rem, 8vw, 7rem);
}

.pf-selector {
    position: relative;
    height: 450vh;
    margin-bottom: 140px;
}
.pf-selector-sticky {
    position: sticky;
    top: 13vh;
    height: 74vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pf-selector-shell {
    width: min(1140px, 96vw);
    height: 100%;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: stretch;
}
.pf-stage {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 12, 0.55);
}
.pf-format-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-format-card.is-active {
    opacity: 1;
    transform: scale(1);
}
.pf-format-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pf-format-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    background: rgba(4, 4, 6, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(10px);
}
.pf-format-copy h3 {
    margin: 2px 0 8px;
    font-size: clamp(1.9rem, 2.3vw, 2.8rem);
    line-height: 0.95;
    letter-spacing: -0.4px;
}
.pf-format-copy p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.pf-notes {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: rgba(8, 8, 12, 0.52);
    backdrop-filter: blur(12px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.pf-note {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 2rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, transform 0.3s ease;
}
.pf-note.is-active {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(6px);
}

.pf-human {
    margin-bottom: 130px;
}
.pf-human-shell {
    width: min(1140px, 96vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 26px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 36px;
    background: rgba(8, 8, 12, 0.56);
    backdrop-filter: blur(14px);
    padding: 28px;
}
.pf-human-text h2 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.95;
    margin: 10px 0 16px;
}
.pf-human-text p {
    margin: 0;
    max-width: 42ch;
}
.pf-human-media {
    padding: 12px;
    border-radius: 26px;
}

.pf-block-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.pf-actions {
    width: min(1140px, 96vw);
    margin: 0 auto 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.pf-action-row {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: center;
}
.pf-action-row.reverse {
    grid-template-columns: 1.15fr 0.85fr;
}
.pf-action-row.reverse .pf-action-text {
    order: 2;
}
.pf-action-row.reverse .pf-action-media {
    order: 1;
}
.pf-action-text h2 {
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    margin: 0 0 14px;
}
.pf-action-text p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.83);
}
.pf-action-media {
    padding: 12px;
    border-radius: 24px;
}

.pf-format-bento {
    width: min(1140px, 96vw);
    margin: 0 auto 130px;
}
.pf-format-bento h3 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    margin-bottom: 38px;
    text-align: center;
}
.pf-format-bento h3 i {
    color: rgba(255, 255, 255, 0.65);
}
.pf-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.pf-grid-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    background: rgba(8, 8, 12, 0.6);
}
.pf-grid-card.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}
.pf-grid-card.tall {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 9 / 16;
}
.pf-grid-card.tall-alt {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 9 / 16;
}
.pf-grid-card.square {
    grid-column: span 2;
    aspect-ratio: 4 / 3;
}
.pf-grid-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pf-grid-title {
    position: absolute;
    left: 14px;
    bottom: 12px;
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(4, 4, 6, 0.55);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pf-archive {
    margin-bottom: 110px;
}
.pf-archive .archive-media {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
    .pf-hero {
        min-height: 76vh;
        margin-top: 104px;
        margin-bottom: 82px;
        border-radius: 30px;
        padding: 24px;
    }

    .pf-selector {
        height: 360vh;
        margin-bottom: 90px;
    }
    .pf-selector-sticky {
        top: 16vh;
        height: 68vh;
    }
    .pf-selector-shell {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pf-notes {
        padding: 16px;
        border-radius: 18px;
        flex-direction: row;
        justify-content: space-between;
    }
    .pf-note {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .pf-human,
    .pf-actions,
    .pf-format-bento,
    .pf-archive {
        margin-bottom: 82px;
    }
    .pf-human-shell {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 24px;
    }

    .pf-actions {
        width: 100%;
        gap: 24px;
    }
    .pf-action-row,
    .pf-action-row.reverse {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pf-action-row.reverse .pf-action-text,
    .pf-action-row.reverse .pf-action-media {
        order: initial;
    }

    .pf-format-bento {
        width: 100%;
    }
    .pf-grid {
        grid-template-columns: 1fr;
    }
    .pf-grid-card.wide,
    .pf-grid-card.tall,
    .pf-grid-card.tall-alt,
    .pf-grid-card.square {
        grid-column: span 1;
        grid-row: span 1;
    }
    .pf-grid-card.wide,
    .pf-grid-card.square {
        aspect-ratio: 4 / 3;
    }
    .pf-grid-card.tall,
    .pf-grid-card.tall-alt {
        aspect-ratio: 9 / 16;
    }
}
