        :root {
            --brand-orange: #FF4400;
            --brand-coral: #FF8B5A;
            --brand-yellow: #FCBF49;
            --brand-grey: #BFC6C4;
            --brand-bright-yellow: #FFE52A;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background-color: #FFFFFF;
            color: #000000;
            overflow-x: hidden;
            scroll-behavior: smooth;
            font-weight: 300; /* Ensuring no bold as requested */
        }

        /* Vertical Text for Dashboard */
        .vertical-rl {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(360deg);
        }

        .section-node {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar for better UI */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--brand-orange); }

        .image-transition {
            transition: opacity 0.4s ease-in-out;
        }

        /* Modal / Multi-page feel container */
        #page-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: white;
            z-index: 1000;
            overflow-y: auto;
            padding: 80px 40px;
        }

        .close-overlay {
            position: fixed;
            top: 30px;
            right: 150px;
            cursor: pointer;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 1001;
        }
