        :root {
            --primary-orange: #FF9E20;
            --black: #000000;
            --light-gray: #DDDDDD;
            --deep-teal: #215E61;
            --soft-cream: #EBEDE3;
            --white: #FFFFFF;
            --font-main: "Nunito", sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--soft-cream);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* TYPOGRAPHY SYSTEM */
        h1, h2, h3, h4, .editorial-heading {
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        
        p {
            font-weight: 400;
            font-size: 1.1rem;
            color: rgba(0,0,0,0.8);
        }

        .uppercase-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* LAYOUT & UTILITIES */
        section {
            position: relative;
            padding: 8rem 4rem;
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        @media(max-width: 968px) {
            section { padding: 4rem 1.5rem; }
        }

        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        @media(max-width: 968px) { .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; } }

        .container { max-width: 1400px; width: 100%; margin: 0 auto; }

        /* HEADER / PREMIUM NAVIGATION */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 1000;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-smooth);
            background: transparent;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 4rem;
            border-bottom: 1px solid var(--light-gray);
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            cursor: pointer;
            color: inherit;
            text-decoration: none;
        }

        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: inherit;
            font-weight: 700;
            font-size: 1rem;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        nav a:hover { color: var(--primary-orange); }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .search-trigger {
            background: none;
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
            color: inherit;
        }

        .nav-divider {
            width: 1px;
            height: 20px;
            background: var(--light-gray);
        }

        .cta-btn {
            background: var(--primary-orange);
            color: var(--black);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255,158,32,0.2);
        }

        /* HAMBURGER FOR MOBILE RESPONSIVENESS */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 1001;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: currentColor;
            transition: var(--transition-smooth);
        }

        @media(max-width: 1024px) {
            header, header.scrolled { padding: 1.5rem 2rem; }
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--black);
                color: var(--white);
                flex-direction: column;
                justify-content: center;
                transition: var(--transition-smooth);
                z-index: 1000;
            }
            nav.active { right: 0; }
            .hamburger { display: flex; }
            .nav-right { display: none; }
        }

        /* CLIENT SIDE PAGE SYSTEM ARCHITECTURE */
        .app-view { display: none; }
        .app-view.active-view { display: block; }

        /* SECTION 01 — THE FINANCIAL LIFE COVER */
        #hero-section {
            background: var(--black);
            color: var(--white);
            text-align: center;
            position: relative;
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            pointer-events: none;
        }

        .hero-title {
            font-size: 7.5vw;
            line-height: 0.9;
            margin-bottom: 2rem;
        }

        .hero-title span { color: var(--primary-orange); }

        .hero-sub {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 3rem;
        }

        .hero-sub em {
            font-style: normal;
            font-weight: 700;
            color: var(--primary-orange);
        }

        .scroll-indicator-wrap {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .indicator-line {
            width: 60px;
            height: 2px;
            background: rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
        }

        .indicator-line::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 50%;
            height: 100%;
            background: var(--primary-orange);
            animation: slideIndicator 2s infinite linear;
        }

        @keyframes slideIndicator {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(200%); }
        }

        /* SECTION 02 — THE MONEY MAP */
        #money-map-section { background: var(--white); }
        .map-wrapper {
            position: relative;
            height: 500px;
            margin-top: 4rem;
        }

        .map-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .map-node {
            position: absolute;
            background: var(--white);
            border: 3px solid var(--black);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 800;
            cursor: pointer;
            z-index: 2;
            transition: var(--transition-smooth);
            transform: translate(-50%, -50%);
        }

        .map-node:hover {
            background: var(--primary-orange);
            color: var(--black);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .node-desc {
            position: absolute;
            bottom: -45px;
            left: 50%;
            transform: translateX(-50%);
            width: 220px;
            font-size: 0.85rem;
            background: var(--black);
            color: var(--white);
            padding: 0.5rem;
            border-radius: 8px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            text-align: center;
            font-weight: 400;
        }

        .map-node:hover .node-desc { opacity: 1; }

        /* SECTION 03 — BUDGETING CHAPTER */
        #budget-chapter-section {
            background: var(--primary-orange);
            color: var(--black);
        }

        .huge-editorial-text {
            font-size: 4.5rem;
            line-height: 1.05;
            margin-bottom: 2rem;
        }

        .budget-visualization-panel {
            background: var(--white);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .vis-bar-row {
            margin-bottom: 1.5rem;
        }

        .vis-bar-label {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .vis-bar-track {
            height: 12px;
            background: var(--soft-cream);
            border-radius: 6px;
            overflow: hidden;
        }

        .vis-bar-fill {
            height: 100%;
            background: var(--deep-teal);
            width: 0%;
            transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* SECTION 04 — THE MONTHLY MONEY CYCLE */
        #money-cycle-section { background: var(--soft-cream); text-align: center; }
        .cycle-container {
            position: relative;
            width: 450px;
            height: 450px;
            margin: 4rem auto;
        }

        .cycle-wheel {
            width: 100%;
            height: 100%;
            border: 2px dashed var(--deep-teal);
            border-radius: 50%;
            position: relative;
            animation: rotateWheel 40s linear infinite;
        }

        @keyframes rotateWheel { 100% { transform: rotate(300deg); } }

        .cycle-node {
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 2px solid var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            cursor: pointer;
            transform: translate(-50%, -50%);
            transition: var(--transition-smooth);
        }

        .cycle-node:hover {
            background: var(--deep-teal);
            color: var(--white);
            scale: 1.15;
        }

        .cycle-center-info {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 240px;
            height: 240px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* SECTION 05 — BUDGETING TOOLKIT */
        #budget-toolkit-section { background: var(--white); }
        .asymmetric-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 3rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .asymmetric-grid { grid-template-columns: 1fr; } }

        .toolkit-card {
            background: var(--soft-cream);
            padding: 3.5rem;
            border-radius: 20px;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .toolkit-card.dark {
            background: var(--black);
            color: var(--white);
        }

        .toolkit-card:hover { transform: translateY(-10px); }

        /* SECTION 06 — SPENDING JOURNAL */
        #spending-journal-section { background: var(--black); color: var(--white); }
        .journal-row {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .journal-row:hover {
            padding-left: 2rem;
            background: rgba(255,158,32,0.05);
        }

        .journal-row h3 { font-size: 3.5rem; text-transform: uppercase; }

        .journal-meta {
            text-align: right;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .journal-row:hover .journal-meta { opacity: 1; color: var(--primary-orange); }

        /* SECTION 07 — THE BANKING ARCHITECTURE */
        #banking-architecture-section {
            background: var(--deep-teal);
            color: var(--white);
        }

        .arch-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 5rem;
            position: relative;
        }
        @media(max-width: 968px) { .arch-flow { flex-direction: column; gap: 4rem; } }

        .arch-block {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 2.5rem;
            border-radius: 16px;
            width: 220px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .arch-block h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }

        /* SECTION 08 — BANKING WITHOUT THE NOISE */
        #banking-noise-section { background: var(--soft-cream); }
        .layered-interface-mockup {
            position: relative;
            height: 400px;
        }

        .mockup-layer {
            position: absolute;
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            width: 280px;
            transition: var(--transition-smooth);
        }

        .mockup-layer.layer-1 { top: 20px; left: 20px; z-index: 3; }
        .mockup-layer.layer-2 { top: 80px; left: 140px; z-index: 2; background: var(--black); color: var(--white); }
        .mockup-layer.layer-3 { top: 160px; left: 260px; z-index: 1; }

        .layered-interface-mockup:hover .layer-1 { transform: translateY(-20px); }
        .layered-interface-mockup:hover .layer-2 { transform: translateY(-10px) scale(1.02); }

        /* SECTION 09 — BANKING DECISION LAB */
        #decision-lab-section { background: var(--white); }
        .lab-row {
            border-bottom: 2px solid var(--light-gray);
            padding: 2rem 0;
        }

        .lab-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 2rem;
            font-weight: 800;
            cursor: pointer;
            font-family: var(--font-main);
        }

        .lab-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            font-size: 1.1rem;
            color: rgba(0,0,0,0.7);
        }

        .lab-content p { padding-top: 1.5rem; }

        /* SECTION 10 — FINANCIAL SAFETY ROOM */
        #safety-room-section { background: var(--black); color: var(--white); }
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .safety-grid { grid-template-columns: 1fr; } }

        .safety-card {
            border-left: 3px solid var(--primary-orange);
            padding: 2rem;
            background: rgba(255,255,255,0.02);
        }

        .safety-card .num { font-size: 3.5rem; font-weight: 900; color: var(--primary-orange); display: block; margin-bottom: 1rem; }

        /* SECTION 11 — INVESTMENT CHAPTER */
        #investment-chapter-section { background: var(--soft-cream); position: relative; }
        .investment-svg-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        /* SECTION 12 — THE INVESTMENT LANDSCAPE */
        #landscape-section { background: var(--white); }
        .landscape-container {
            position: relative;
            height: 500px;
            margin-top: 4rem;
            background: var(--soft-cream);
            border-radius: 24px;
            overflow: hidden;
        }

        .landscape-peak {
            position: absolute;
            bottom: 0;
            width: 40%;
            background: var(--deep-teal);
            color: var(--white);
            padding: 2rem;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            transition: var(--transition-smooth);
        }

        .landscape-peak.peak-1 { left: 5%; height: 60%; background: #1B4E51; }
        .landscape-peak.peak-2 { left: 35%; height: 80%; background: var(--deep-teal); }
        .landscape-peak.peak-3 { left: 65%; height: 50%; background: #2C787C; }

        .landscape-peak:hover { height: 90% !important; }

        /* SECTION 13 — INVESTMENT COMPASS */
        #compass-section { background: var(--soft-cream); text-align: center; }
        .compass-ui {
            width: 400px;
            height: 400px;
            margin: 4rem auto;
            border: 4px solid var(--black);
            border-radius: 50%;
            position: relative;
        }

        .compass-point {
            position: absolute;
            background: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 800;
            border: 2px solid var(--black);
            cursor: pointer;
        }

        .compass-point.north { top: -20px; left: 50%; transform: translateX(-50%); }
        .compass-point.south { bottom: -20px; left: 50%; transform: translateX(-50%); }
        .compass-point.east { right: -40px; top: 50%; transform: translateY(-50%); }
        .compass-point.west { left: -40px; top: 50%; transform: translateY(-50%); }

        /* SECTION 14 — TIME VS MONEY */
        #time-money-section { background: var(--black); color: var(--white); }
        .horizontal-scroll-container {
            display: flex;
            gap: 4rem;
            overflow-x: auto;
            padding: 4rem 0;
            scroll-snap-type: x mandatory;
        }

        .time-card {
            flex: 0 0 350px;
            background: rgba(221, 216, 216, 0.692);
            padding: 3rem;
            border-radius: 20px;
            scroll-snap-align: start;
        }

        .time-card h4 { font-size: 3rem; color: var(--primary-orange); margin-bottom: 1.5rem; }

        /* SECTION 15 — INVESTMENT MYTHS */
        #myths-section { background: var(--white); }
        .myth-flipper-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .myth-flipper-grid { grid-template-columns: 1fr; } }

        .myth-card {
            height: 250px;
            perspective: 1000px;
            cursor: pointer;
        }

        .myth-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .myth-card:hover .myth-card-inner { transform: rotateY(180deg); }

        .myth-front, .myth-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            border-radius: 16px;
        }

        .myth-front { background: var(--soft-cream); color: var(--black); border: 2px solid var(--black); }
        .myth-back { background: var(--deep-teal); color: var(--white); transform: rotateY(180deg); }

        /* SECTION 16 — THE FINANCIAL TRIANGLE */
        #triangle-section { background: var(--soft-cream); text-align: center; }
        .triangle-container {
            width: 0;
            height: 0;
            border-left: 200px solid transparent;
            border-right: 200px solid transparent;
            border-bottom: 350px solid var(--white);
            margin: 4rem auto;
            position: relative;
        }

        .triangle-text {
            position: absolute;
            font-weight: 800;
        }

        .triangle-text.pt-1 { top: 80px; left: -50px; width: 100px; text-align: center; }
        .triangle-text.pt-2 { top: 280px; left: -160px; }
        .triangle-text.pt-3 { top: 280px; left: 80px; }

        /* SECTION 17 — MONEY PERSONALITIES */
        #personalities-section { background: var(--white); }
        .personality-tab-container {
            margin-top: 4rem;
        }

        .tab-triggers {
            display: flex;
            gap: 1.5rem;
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            overflow-x: auto;
        }

        .tab-btn {
            background: none;
            border: none;
            font-size: 1.25rem;
            font-weight: 800;
            cursor: pointer;
            padding: 0.5rem 1rem;
            font-family: var(--font-main);
            white-space: nowrap;
        }

        .tab-btn.active {
            color: var(--primary-orange);
            border-bottom: 3px solid var(--primary-orange);
        }

        .tab-content-panel { display: none; }
        .tab-content-panel.active { display: block; }

        /* SECTION 18 — FINANCIAL TIMELINE */
        #timeline-section { background: var(--soft-cream); }
        .vertical-timeline {
            position: relative;
            max-width: 800px;
            margin: 4rem auto 0 auto;
            padding-left: 3rem;
            border-left: 3px solid var(--black);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -54px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-orange);
            border: 4px solid var(--black);
        }

        /* SECTION 19 — THE MONEY JOURNAL */
        #journal-section { background: var(--white); }
        .magazine-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .magazine-grid { grid-template-columns: 1fr; } }

        .mag-featured {
            border-bottom: 4px solid var(--black);
            padding-bottom: 2rem;
        }

        .mag-featured h3 { font-size: 3.5rem; margin: 1.5rem 0; }

        .mag-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .side-post {
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 1.5rem;
        }

        /* SECTION 20 — FINANCE IN NUMBERS */
        #numbers-section { background: var(--black); color: var(--white); text-align: center; }
        .stats-wall {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .stats-wall { grid-template-columns: 1fr 1fr; } }

        .stat-item { font-size: 4.5rem; font-weight: 900; color: var(--primary-orange); }
        .stat-item span { display: block; font-size: 1.2rem; color: var(--white); font-weight: 400; margin-top: 1rem; }

        /* SECTION 21 — FINANCIAL DECISION TREE */
        #decision-tree-section { background: var(--soft-cream); text-align: center; }
        .tree-branch-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .tree-node {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid var(--black);
            cursor: pointer;
            transition: var(--transition-smooth);
            width: 220px;
        }

        .tree-node:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-5px);
        }

        /* SECTION 22 — FINANCIAL HABIT TRACKER */
        #habit-tracker-section { background: var(--white); }
        .habit-calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1rem;
            margin-top: 3rem;
            max-width: 700px;
        }

        .calendar-day {
            aspect-ratio: 1;
            background: var(--soft-cream);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .calendar-day.active-habit {
            background: var(--primary-orange);
            color: var(--black);
        }

        /* SECTION 23 — FINANCIAL RESOURCE LIBRARY */
        #resource-library-section { background: var(--soft-cream); }
        .bookshelf-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .bookshelf-grid { grid-template-columns: 1fr; } }

        .book-item {
            background: var(--white);
            padding: 3rem;
            border-bottom: 8px solid var(--deep-teal);
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.02);
        }

        /* SECTION 24 — MONEY MYTH WALL */
        #myth-wall-section { background: var(--black); color: var(--white); }
        .wall-statement {
            font-size: 3.5rem;
            font-weight: 800;
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .wall-statement:hover { color: var(--primary-orange); }

        /* SECTION 25 — FINANCIAL STORIES */
        #stories-section { background: var(--white); }
        .story-track {
            margin-top: 4rem;
            background: var(--soft-cream);
            padding: 4rem;
            border-radius: 24px;
        }

        .story-flow-nodes {
            display: flex;
            justify-content: space-between;
            margin-bottom: 3rem;
            font-weight: 800;
            font-size: 1.25rem;
        }

        /* SECTION 26 — THE WEEKLY MONEY LETTER */
        #newsletter-section {
            background: var(--deep-teal);
            color: var(--white);
            text-align: center;
        }

        .newsletter-form-container {
            max-width: 600px;
            margin: 3rem auto 0 auto;
        }

        .form-group-inline {
            display: flex;
            gap: 1rem;
        }
        @media(max-width: 768px) { .form-group-inline { flex-direction: column; } }

        .form-input-editorial {
            flex: 1;
            padding: 1.2rem 2rem;
            border-radius: 50px;
            border: 2px solid rgba(255,255,255,0.2);
            background: transparent;
            color: var(--white);
            font-size: 1.1rem;
            font-family: var(--font-main);
            outline: none;
        }

        .form-input-editorial::placeholder { color: rgba(255,255,255,0.5); }

        .form-response-msg {
            margin-top: 1.5rem;
            font-weight: 700;
            display: none;
        }

        /* SECTION 27 — FAQ */
        #faq-section { background: var(--white); }
        .faq-index-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            margin-top: 4rem;
        }
        @media(max-width: 968px) { .faq-index-layout { grid-template-columns: 1fr; } }

        /* SECTION 28 — CONTACT */
        #contact-section { background: var(--soft-cream); }
        .contact-form-ui {
            background: var(--white);
            padding: 4rem;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        }

        .input-block {
            margin-bottom: 2rem;
        }

        .input-block label {
            display: block;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .input-field-native {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-family: var(--font-main);
            font-size: 1.1rem;
            outline: none;
        }

        /* SECTION 29 — FINAL MANIFESTO */
        #manifesto-section {
            background: var(--black);
            color: var(--white);
            text-align: center;
            padding: 12rem 4rem;
        }

        .manifesto-huge { font-size: 6vw; line-height: 1; margin-bottom: 3rem; }

        /* SECTION 30 — SIGNATURE FOOTER */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 6rem 4rem 2rem 4rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 4rem;
            margin-bottom: 6rem;
        }
        @media(max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

        .footer-col h5 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            color: var(--primary-orange);
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s ease; cursor: pointer; }
        .footer-col ul li a:hover { color: var(--white); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.4);
            flex-wrap: wrap;
            gap: 2rem;
        }

        /* INNER INTERACTIVE APP PAGES PLATFORM CSS */
        .inner-page-hero {
            background: var(--black);
            color: var(--white);
            padding: 12rem 4rem 6rem 4rem;
            text-align: center;
        }

        .inner-content-wrapper {
            padding: 6rem 4rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .interactive-tool-box {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            margin: 3rem 0;
        }
        /* Footer form enhancements */
.form-group-inline {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-group-inline .form-input-editorial {
    flex: 1;
    min-width: 180px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: 0.3s ease;
}

.form-group-inline .form-input-editorial:focus {
    border-color: var(--primary-orange);
    background: rgba(255,255,255,0.08);
}

.form-group-inline .form-input-editorial::placeholder {
    color: rgba(255,255,255,0.3);
}

#footer-subscribe-btn, #footer-unsubscribe-btn {
    white-space: nowrap;
}

#footer-subscribe-msg, #footer-unsubscribe-msg {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .form-group-inline {
        flex-direction: column;
    }
    .form-group-inline .form-input-editorial {
        min-width: 100%;
    }
}
