        /* --- CORE DESIGN SYSTEM --- */
        :root {
            --primary: #0A7C6E;
            --bg: #b2ee50;
            --accent1: #E4D329;
            --accent2: #8A5F41;
            --highlight: #FFEA6C;
            --text-dark: #111111;
            --text-muted: #666666;
            --border-light: #EBEBEB;
            --font: 'Arimo', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            user-select: none;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--bg);
            color: var(--text-dark);
            font-family: var(--font);
            overflow-x: hidden;
        }

        /* --- TYPOGRAPHY PER RULES --- */
        h1, h2, h3, h4 {
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.0;
            letter-spacing: -0.03em;
            color: var(--text-dark);
        }

        p {
            font-weight: 400;
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text-muted);
        }

        .huge-title {
            font-size: clamp(3rem, 8vw, 8rem);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 4.5rem);
            margin-bottom: 30px;
        }

        .label-caps {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--primary);
            margin-bottom: 10px;
            display: inline-block;
        }

        .btn-editorial {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-bottom: 2px solid var(--text-dark);
            padding-bottom: 4px;
            cursor: pointer;
            display: inline-block;
            transition: color 0.3s, border-color 0.3s;
        }

        .btn-editorial:hover {
            color: var(--primary);
            border-color: var(--primary);
        }

        /* --- ROUTING APP LAYER --- */
        .app-view {
            display: none;
            width: 100%;
        }

        .app-view.active-view {
            display: block;
        }

        /* --- HEADER & FULLSCREEN OVERLAY --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
            z-index: 1000;
            transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
            border-bottom: 1px solid var(--border-light);
        }

        .logo {
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            cursor: pointer;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-item {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: color 0.3s;
        }

        .nav-item:hover {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .menu-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: 700;
            transition: background 0.3s, color 0.3s;
        }

        .menu-btn:hover {
            background: var(--text-dark);
            color: var(--bg);
        }

        /* Fullscreen Navigation Down Slide Panel */
        .fs-nav-overlay {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--primary);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 10%;
            transition: top 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        }

        .fs-nav-overlay.open {
            top: 0;
        }

        .fs-links {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .fs-item {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            color: var(--bg);
            text-transform: uppercase;
            font-weight: 700;
            cursor: pointer;
            width: max-content;
        }

        .fs-item:hover {
            color: var(--highlight);
        }

        /* --- HERO SECTION: EDITORIAL COLLAGE (160vh) --- */
        .hero-collage {
            position: relative;
            width: 100vw;
            height: 160vh;
            display: grid;
            grid-template-columns: 35% 30% 35%;
            padding-top: 100px;
            background-color: var(--bg);
            overflow: hidden;
        }

        .hero-col-left {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-col-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-col-center {
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 40px;
            justify-content: center;
        }

        .hero-card {
            background: #FDFDFD;
            border: 1px solid var(--border-light);
            padding: 30px;
            opacity: 0;
            transform: translateY(40px);
        }

        .hero-card h3 {
            font-size: 1.8rem;
            margin: 10px 0;
        }

        .hero-col-right {
            position: relative;
            width: 100%;
            height: 90%;
        }

        .hero-col-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-glass-panel {
            position: absolute;
            bottom: 40px;
            left: -10%;
            width: 95%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(255,255,255,0.5);
        }

        /* --- SECTION 2: EDITORIAL TIMELINE --- */
        .timeline-section {
            background: var(--bg);
            padding: 120px 60px;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 120px;
            bottom: 120px;
            width: 2px;
            background-color: var(--primary);
            transform: translateX(-50%);
        }

        .timeline-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            margin-bottom: 100px;
            position: relative;
        }

        .timeline-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .timeline-block:nth-child(even) .timeline-content {
            grid-column: 2;
            order: 2;
        }

        .timeline-block:nth-child(even) .timeline-media {
            grid-column: 1;
            order: 1;
        }

        .timeline-media {
            padding: 40px;
            display: flex;
            justify-content: center;
        }

        .timeline-media img {
            width: 100%;
            max-width: 400px;
            height: 400px;
            object-fit: cover;
        }

        .year-badge {
            background: var(--accent1);
            color: var(--text-dark);
            padding: 6px 14px;
            font-weight: 700;
            width: max-content;
            font-size: 0.9rem;
        }

        /* --- SECTION 3: INTERACTIVE MATRIX --- */
        .matrix-section {
            padding: 120px 60px;
            background-color: #FAFBFB;
        }

        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .matrix-tile {
            background: var(--bg);
            border: 1px solid var(--border-light);
            padding: 50px 40px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 280px;
        }

        .matrix-tile h4 {
            font-size: 2rem;
            color: var(--text-dark);
        }

        .matrix-tile .tile-expanded-content {
            display: none;
            margin-top: 20px;
        }

        /* Active/Hover states managed smoothly */
        .matrix-tile.active-tile {
            background: var(--primary);
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(10, 124, 110, 0.15);
        }

        .matrix-tile.active-tile h4, .matrix-tile.active-tile p {
            color: var(--bg);
        }

        .matrix-tile.active-tile .tile-expanded-content {
            display: block;
        }

        /* --- SECTION 4: SPLIT GALLERY --- */
        .split-gallery-section {
            display: grid;
            grid-template-columns: 65% 35%;
            width: 100vw;
            height: 90vh;
            background: var(--bg);
            border-top: 1px solid var(--border-light);
        }

        .gallery-left-slides {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide-img-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .slide-img-track.active-img {
            opacity: 1;
        }

        .slide-img-track img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-right-text {
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .text-slide-content {
            display: none;
        }

        .text-slide-content.active-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .progress-bar-container {
            position: absolute;
            bottom: 60px;
            left: 80px;
            display: flex;
            gap: 15px;
        }

        .progress-line {
            width: 40px;
            height: 3px;
            background: var(--border-light);
            cursor: pointer;
            position: relative;
        }

        .progress-line.fill-active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: var(--primary);
        }

        /* --- SECTION 5: HORIZONTAL SCROLLING --- */
        .horizontal-scroll-container {
            overflow: hidden;
            background: #111111;
            width: 100vw;
        }

        .horizontal-scroll-track {
            display: flex;
            width: 300vw;
            height: 100vh;
            align-items: center;
            padding: 0 100px;
            gap: 100px;
        }

        .hz-img-block {
            width: 550px;
            height: 70vh;
            flex-shrink: 0;
            overflow: hidden;
        }

        .hz-img-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hz-text-block {
            width: 450px;
            flex-shrink: 0;
            color: var(--bg);
        }

        .hz-text-block h3 {
            color: var(--bg);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        /* --- SECTION 6: FIXED BACKGROUND --- */
        .fixed-bg-section {
            position: relative;
            width: 100vw;
            height: 140vh;
            overflow: hidden;
        }

        .fixed-bg-media {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://i.pinimg.com/1200x/b8/79/fd/b879fddc2cbbcacfffd0b2ff2785ad7f.jpg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            filter: brightness(0.6);
        }

        .floating-article-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            display: flex;
            justify-content: center;
            padding-top: 30vh;
        }

        .floating-article-box {
            background: var(--bg);
            max-width: 650px;
            padding: 80px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .editorial-quote {
            font-size: 1.5rem;
            font-style: italic;
            border-left: 4px solid var(--primary);
            padding-left: 20px;
            color: var(--accent2);
        }

        .highlight-phrase {
            background-color: var(--highlight);
            padding: 4px 8px;
            font-weight: 700;
        }

        /* --- SECTION 7: COMPARISON GRID --- */
        .comparison-section {
            padding: 120px 60px;
            background: var(--bg);
            position: relative;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
            position: relative;
        }

        .comparison-col {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .comparison-col img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .comp-line-divider {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: var(--border-light);
            transform: translateX(-50%);
        }

        .metrics-pill {
            background: #F4F4F4;
            padding: 15px 25px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            color: var(--primary);
            border-left: 3px solid var(--primary);
        }

        /* --- SECTION 8: DRAGGABLE STORIES --- */
        .stories-section {
            padding: 120px 60px;
            background: #FAFBFB;
            overflow: hidden;
        }

        .drag-gallery-viewport {
            width: 100%;
            margin-top: 50px;
            cursor: grab;
        }

        .drag-gallery-track {
            display: flex;
            gap: 40px;
            width: max-content;
        }

        .story-member-card {
            background: var(--bg);
            border: 1px solid var(--border-light);
            padding: 40px;
            width: 380px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .story-member-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
        }

        /* --- SECTION 9: SUBSCRIPTION --- */
        .subs-section {
            display: grid;
            grid-template-columns: 55% 45%;
            padding: 120px 60px;
            background: var(--bg);
            border-top: 1px solid var(--border-light);
        }

        .subs-card-right {
            background: #FAFBFB;
            border: 1px solid var(--border-light);
            padding: 60px;
        }

        .sub-field-group {
            margin-bottom: 35px;
        }

        .sub-field-group h5 {
            font-size: 1rem;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .sub-input-row {
            display: flex;
            border-bottom: 2px solid var(--text-dark);
            padding-bottom: 8px;
        }

        .sub-input-row input {
            border: none;
            background: transparent;
            outline: none;
            flex-grow: 1;
            font-family: var(--font);
            font-size: 1.1rem;
        }

        .sub-btn {
            background: transparent;
            border: none;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: color 0.3s;
        }

        .sub-btn:hover {
            color: var(--primary);
        }

        .alert-msg {
            font-size: 0.9rem;
            margin-top: 10px;
            font-weight: 700;
            display: none;
        }

        /* --- FOOTER LAYOUT --- */
        footer {
            height: 80px;
            border-top: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
            font-size: 0.9rem;
            background-color: var(--bg);
        }

        .footer-center {
            display: flex;
            gap: 25px;
        }

        .footer-link {
            cursor: pointer;
            font-weight: 400;
        }

        .footer-link:hover {
            text-decoration: underline;
        }

        /* --- TEMPLATE ENGINE INNER PAGES --- */
        .inner-editorial-hero {
            padding: 160px 60px 80px 60px;
            background-color: #FAFBFB;
            border-bottom: 1px solid var(--border-light);
        }

        .inner-editorial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 100px 60px;
            max-width: 1440px;
            margin: 0 auto;
        }

        .diagram-box {
            border: 2px dashed var(--primary);
            padding: 40px;
            background: var(--bg);
        }

        .interactive-step {
            padding: 20px 0;
            border-bottom: 1px solid var(--border-light);
            cursor: pointer;
        }

        .interactive-step-desc {
            display: none;
            padding-top: 10px;
        }

        .faq-block {
            margin-bottom: 30px;
        }

        .faq-block h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* --- MOBILE RESPONSIBLENESS --- */
        .mobile-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-hamburger span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: 0.3s;
        }

        @media (max-width: 1024px) {
            header { padding: 0 30px; }
            .nav-links { display: none; }
            .mobile-hamburger { display: flex; }
            .hero-collage { grid-template-columns: 1fr; height: auto; }
            .hero-col-left { height: 50vh; }
            .hero-col-right { height: 50vh; }
            .hero-glass-panel { left: 5%; width: 90%; }
            .timeline-block { grid-template-columns: 1fr; }
            .timeline-line { left: 30px; }
            .timeline-block:nth-child(even) .timeline-content { grid-column: 1; }
            .timeline-block:nth-child(even) .timeline-media { grid-column: 1; }
            .matrix-grid { grid-template-columns: 1fr; }
            .split-gallery-section { grid-template-columns: 1fr; height: auto; }
            .gallery-right-text { padding: 40px; }
            .comparison-grid { grid-template-columns: 1fr; gap: 40px; }
            .comp-line-divider { display: none; }
            .subs-section { grid-template-columns: 1fr; gap: 40px; }
            .inner-editorial-grid { grid-template-columns: 1fr; }
            footer { flex-direction: column; height: auto; padding: 30px; gap: 15px; text-align: center; }
        }
