        :root {
            --cyan: #00FFDE;
            --black: #000000;
            --white: #FFFFFF;
            --font-mono: "Roboto Mono", monospace;
            --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            font-family: var(--font-mono);
            overflow-x: hidden;
            position: relative;
        }

        /* --- PERSISTENT ASYMMETRICAL POSTER HEADER STRUCTURE --- */
        .editorial-poster-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 1000;
            padding: 3rem 4rem;
            display: grid;
            grid-template-columns: 350px 1fr;
            align-content: space-between;
        }

        /* Left Editorial Column Navigation Deck */
        .header-left-deck {
            grid-column: 1;
            margin-top: -5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            pointer-events: auto;
            height: 100%;
        }

        .editorial-logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 3.5rem;
        }

        .editorial-vertical-nav {
            display: flex;
            flex-direction: column;
        }

        .nav-link {
            color: var(--cyan);
            font-size: 1.35rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            width: fit-content;
            position: relative;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background-color: var(--cyan);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease-editorial);
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            box-shadow: 0 0 8px var(--cyan);
        }

        /* Right Editorial Utility Deck */
        .header-right-deck {
            grid-column: 2;
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-top: -10rem;
            pointer-events: auto;
        }

        .social-links-row {
            display: flex;
            gap: 1.5rem;
        }

        .social-icon-link {
            color: var(--black);
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            text-transform: uppercase;
        }

        .social-icon-link:hover {
            color: var(--cyan);
        }

        .buy-ticket-btn {
            border: 8px solid var(--black);
            background: transparent;
            color: var(--black);
            padding: 0.6rem 2rem;
            font-family: var(--font-mono);
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 0px;
            cursor: pointer;
            transition: all 0.3s var(--ease-editorial);
        }

        .buy-ticket-btn:hover {
            background-color: var(--black);
            color: var(--white);
        }

        /* Global Theme State Adjustments for Floating Frames */
        body.light-hero-controls .social-icon-link { color: var(--white); }
        body.light-hero-controls .buy-ticket-btn { border-color: var(--white); color: var(--white); }
        body.light-hero-controls .buy-ticket-btn:hover { background-color: var(--white); color: var(--black); }

        /* --- MULTIPAGE CONTAINER ARCHITECTURE --- */
        .chapter-container {
            display: none;
            width: 100%;
            position: relative;
        }

        .chapter-container.active-chapter {
            display: block;
        }

        /* Shared Content Layout Grids */
        .editorial-viewport-section {
            min-height: 100vh;
            width: 100%;
            padding-left: 350px; /* Aligned precisely past the vertical navbar baseline */
            position: relative;
        }

        /* ==========================================================================
           CHAPTER: HOME LAYOUT
           ========================================================================== */
        .home-hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-right: 8vw;
            overflow: hidden;
        }

        .hero-bg-media {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(195, 182, 182, 0.55), rgba(188, 188, 188, 0.85)), url('https://i.pinimg.com/1200x/5f/3a/f2/5f3af25da06d496598d19646f06b4ae7.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
            animation: backgroundSlowZoom 30s infinite alternate linear;
        }

        @keyframes backgroundSlowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .editorial-label-top {
            font-size: 0.9rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-top: 2rem;
            color: var(--white);
        }

        .giant-editorial-title h1 {
            font-size: 9vw;
            line-height: 0.85;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
        }

        .text-white { color: var(--white); }
        .text-cyan { color: var(--cyan); }

        .hero-paragraph-block {
            max-width: 600px;
            margin-top: 3.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--white);
        }

        .hero-paragraph-block span { color: var(--cyan); font-weight: 700; }

        /* Graphic Connectors Engine */
        .svg-connector-canvas {
            margin-top: 4rem;
            width: 100%;
            max-width: 500px;
        }

        .svg-connector-canvas path {
            stroke: var(--cyan);
            stroke-width: 2px;
            fill: none;
            stroke-dasharray: 800;
            stroke-dashoffset: 800;
            animation: drawConnectorPath 2.5s var(--ease-editorial) forwards;
        }

        @keyframes drawConnectorPath { to { stroke-dashoffset: 0; } }
        .svg-connector-canvas circle { fill: var(--black); stroke: var(--cyan); stroke-width: 2px; }

        /* Journey Module */
        .journey-section {
            background-color: var(--white);
            color: var(--black);
            padding: 10rem 8vw 10rem 0;
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
        }

        .journey-column { padding: 2rem; }
        .journey-column h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 1.5rem; }
        .journey-column p { font-size: 1.1rem; line-height: 1.7; color: #222; }

        .journey-center-line {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .journey-center-line::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--cyan);
        }

        .journey-node-dot {
            width: 14px;
            height: 14px;
            background: var(--white);
            border: 3px solid var(--cyan);
            border-radius: 50%;
            position: absolute;
            top: 2.5rem;
            z-index: 10;
        }

        /* Fixed Parallax Image Block */
        .fixed-parallax-view {
            height: 100vh;
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url('https://i.pinimg.com/736x/3b/cb/6e/3bcb6e5860f828592234961d9d11a5ce.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: flex-end;
            padding: 4rem;
        }

        .editorial-caption-tag {
            background: var(--black);
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border-left: 2px solid var(--cyan);
        }

        /* Timeline Flow Block */
        .timeline-section {
            background-color: var(--white);
            color: var(--black);
            padding: 8rem 6vw 8rem 0;
        }

        .timeline-header {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 6rem;
            text-decoration: underline cubic-bezier(0.16, 1, 0.3, 1) var(--cyan);
        }

        .timeline-spine-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            padding-left: 3rem;
        }

        .timeline-spine-container::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--cyan);
        }

        .timeline-block-node {
            position: relative;
            margin-bottom: 5rem;
        }

        .timeline-block-node::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--cyan);
        }

        .timeline-block-node h3 { font-size: 1.8rem; text-transform: uppercase; margin-bottom: 0.5rem; }
        .timeline-block-node p { font-size: 1rem; color: #444; }

        /* Four Square Card Composition */
        .four-square-magazine-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 6rem auto;
            max-width: 1200px;
            padding: 0 2rem;
        }

        .editorial-square-card {
            aspect-ratio: 1/1;
            overflow: hidden;
            background: #eee;
        }

        .editorial-square-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: all 0.5s ease;
        }

        .editorial-square-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Closing Modular Frame */
        .closing-editorial-section {
            background-color: var(--black);
            color: var(--white);
            padding: 10rem 6vw 10rem 0;
        }

        .closing-editorial-section h2 { font-size: 5rem; text-transform: uppercase; line-height: 0.9; margin-bottom: 3rem; }
        .closing-animated-underline { width: 150px; height: 3px; background: var(--cyan); margin-bottom: 4rem; }
        .closing-body-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; font-size: 1.15rem; line-height: 1.8; color: #ccc; }

        /* ==========================================================================
           CHAPTER: AGENDA LAYOUT
           ========================================================================== */
        .agenda-hero-grid {
            padding: 10rem 6vw 4rem 0;
        }

        .agenda-matrix-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 2rem 6vw 10rem 0;
        }

        .agenda-interactive-node {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 1.5rem;
            cursor: pointer;
        }

        .agenda-transparent-num {
            font-size: 7vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.3);
            line-height: 1;
            margin-bottom: 1rem;
            transition: all 0.3s var(--ease-editorial);
        }

        .agenda-interactive-node:hover .agenda-transparent-num {
            color: var(--cyan);
            -webkit-text-stroke-color: var(--cyan);
        }

        .agenda-expanded-overlay-card {
            grid-column: 1 / -1;
            display: none;
            background: #0a0a0a;
            border-left: 3px solid var(--cyan);
            padding: 3rem;
            margin-top: 1rem;
        }

        .agenda-expanded-overlay-card.visible-active { display: block; }
        .agenda-row-entry { display: grid; grid-template-columns: 200px 1fr; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .agenda-row-entry:last-child { border: none; }

        /* ==========================================================================
           CHAPTER: SPEAKERS LAYOUT
           ========================================================================== */
        .speaker-viewport-tri-split {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            min-height: 100vh;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .speaker-img-pane img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
        .speaker-vertical-txt-pane { background: #050505; display: flex; align-items: center; justify-content: center; border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }
        .vertical-editorial-string { font-size: 5vw; font-weight: 900; color: var(--cyan); writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; }
        .speaker-bio-pane { padding: 6rem 3rem; display: flex; flex-direction: column; justify-content: center; }
        .speaker-bio-pane h2 { font-size: 2.5rem; text-transform: uppercase; margin-bottom: 1.5rem; }
        .speaker-bio-pane p { font-size: 1.05rem; line-height: 1.8; color: #aaa; }

        /* ==========================================================================
           CHAPTER: CONTACT LAYOUT
           ========================================================================== */
        .contact-split-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
        .contact-left-editorial { padding: 10rem 4rem; display: flex; flex-direction: column; justify-content: space-between; background: #030303; }
        .contact-left-editorial h1 { font-size: 5rem; text-transform: uppercase; line-height: 1; }
        .contact-pull-quote { font-size: 2rem; border-left: 3px solid var(--cyan); padding-left: 2rem; margin: 3rem 0; color: #ccc; }
        .contact-right-form-pane { padding: 10rem 4rem; display: flex; flex-direction: column; justify-content: center; }
        
        .floating-input-field-group { position: relative; margin-bottom: 3.5rem; }
        .editorial-input { width: 100%; padding: 0.8rem 0; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.2); color: var(--white); font-family: var(--font-mono); font-size: 1.1rem; outline: none; }
        .editorial-input:focus { border-bottom-color: var(--cyan); }
        .editorial-label { position: absolute; left: 0; top: 0.8rem; color: rgba(255,255,255,0.4); pointer-events: none; transition: 0.3s ease; text-transform: uppercase; }
        .editorial-input:focus ~ .editorial-label, .editorial-input:valid ~ .editorial-label { top: -1.2rem; font-size: 0.8rem; color: var(--cyan); }
        
        .oversized-location-banner { grid-column: 1 / -1; background: var(--cyan); color: var(--black); padding: 5rem; font-size: 4vw; font-weight: 900; text-transform: uppercase; text-align: center; }

        /* ==========================================================================
           CHAPTER: TICKETS MATRIX
           ========================================================================== */
        .tickets-matrix-wrapper { padding: 10rem 4rem 6rem 0; }
        .tickets-grid-box { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 4rem auto; }
        .ticket-brutalist-card { border: 2px solid var(--white); padding: 4rem; position: relative; }
        .ticket-brutalist-card.cyan-accent-border { border-color: var(--cyan); }
        .ticket-price-node { font-size: 5.5rem; font-weight: 900; color: var(--cyan); margin: 1.5rem 0; }
        
        .brutalist-table { width: 100%; max-width: 1100px; margin: 6rem auto; border-collapse: collapse; }
        .brutalist-table th, .brutalist-table td { padding: 1.2rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .brutalist-table th { color: var(--cyan); text-transform: uppercase; }

        /* ==========================================================================
           SUBSCRIPTION UTILITY TEMPLATES
           ========================================================================== */
        .utility-split-container { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
        .utility-visual-sidebar { background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://i.pinimg.com/736x/ac/55/e2/ac55e2b52968aae796d007535811f9ee.jpg'); background-size: cover; background-position: center; }
        .utility-content-sidebar { padding: 10rem 4rem; display: flex; flex-direction: column; justify-content: center; }
        .utility-content-sidebar h1 { font-size: 3.5rem; text-transform: uppercase; margin-bottom: 1.5rem; }
        .status-alert-plate { display: none; background: var(--cyan); color: var(--black); padding: 1rem; font-weight: 700; margin-top: 1.5rem; text-transform: uppercase; }

        /* ==========================================================================
           LONG ARTICLES (PRIVACY / TERMS)
           ========================================================================== */
        .legal-article-container { max-width: 800px; margin: 0 auto; padding: 12rem 2rem 6rem 2rem; }
        .legal-index-tag { font-size: 3rem; font-weight: 900; color: var(--cyan); }
        .legal-article-container h2 { font-size: 2.2rem; text-transform: uppercase; margin-bottom: 1.5rem; }
        .legal-article-container p { font-size: 1.1rem; color: #ccc; line-height: 1.7; margin-bottom: 3rem; text-align: justify; }

        /* ==========================================================================
           404 MATRIX RUNTIME Error
           ========================================================================== */
        .error-fullscreen-flex { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
        .error-code { font-size: 15vw; font-weight: 900; color: var(--cyan); line-height: 1; }
        .error-msg { font-size: 2.5vw; text-transform: uppercase; margin-bottom: 3rem; letter-spacing: 0.1em; }

        /* ==========================================================================
           GLOBAL EDITORIAL BASELINE FOOTER
           ========================================================================== */
        .editorial-baseline-footer {
            background-color: var(--cyan);
            color: var(--black);
            padding: 4rem 4rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            align-items: baseline;
            gap: 2rem;
            position: relative;
            z-index: 900;
        }

        .footer-newsletter-box h4 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: 1rem; }
        .footer-input { width: 100%; padding: 0.8rem; border: 1px solid var(--black); background: transparent; font-family: var(--font-mono); font-weight: 700; color: var(--black); outline: none; margin-bottom: 1rem; }
        .footer-btn-row { display: flex; gap: 1rem; }
        .footer-btn { padding: 0.5rem 1.2rem; background: var(--black); color: var(--cyan); border: 1px solid var(--black); font-family: var(--font-mono); font-weight: 700; cursor: pointer; text-transform: uppercase; }
        .footer-btn.inverted { background: transparent; color: var(--black); }
        
        .footer-copyright { font-weight: 700; text-align: center; font-size: 0.9rem; }
        .footer-links-column { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
        .footer-links-column a { color: var(--black); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
        .footer-links-column a:hover { text-decoration: underline; }

        /* ==========================================================================
           RESPONSIVE RE-ARCHITECTURE LAYOUTS
           ========================================================================== */
        @media (max-width: 1100px) {
            .editorial-poster-header { position: absolute; height: auto; grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
            .header-right-deck { justify-self: start; grid-column: 1; }
            .editorial-viewport-section, .editorial-baseline-footer { padding-left: 2rem; margin-left: 0; }
            .home-hero { padding-top: 25rem; }
            .journey-section, .closing-body-columns, .agenda-matrix-grid, .speaker-viewport-tri-split, .contact-split-grid, .tickets-grid-box, .utility-split-container { grid-template-columns: 1fr; }
            .four-square-magazine-grid { grid-template-columns: repeat(2, 1fr); }
            .editorial-baseline-footer { grid-template-columns: 1fr; gap: 3rem; padding-right: 2rem; }
            .footer-links-column { text-align: left; }
        
        }
        .agenda-hero-grid{
    max-width:1400px;
    margin:0 auto;
    padding:120px 40px;
    text-align:center;
}

.agenda-matrix-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto 80px;
}

.agenda-expanded-overlay-card{
    max-width:950px;
    margin:50px auto;
    text-align:left;
}

.agenda-row-entry{
    display:grid;
    grid-template-columns:170px 1fr;
    gap:30px;
    padding:35px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.agenda-row-entry h5{
    font-size:1.35rem;
    text-transform:uppercase;
    margin-bottom:10px;
}

.agenda-row-entry p{
    color:#8f8f8f;
    line-height:1.9;
}

@media(max-width:900px){
    .agenda-matrix-grid{
        grid-template-columns:1fr 1fr;
    }

    .agenda-row-entry{
        grid-template-columns:1fr;
        gap:10px;
    }
}

@media(max-width:600px){
    .agenda-matrix-grid{
        grid-template-columns:1fr;
    }
}
