
        /* completely independent module — no external header/footer, no global leakage */
        .ul-enclosure-module {
            all: initial;
            display: block;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            background-color: #ffffff;
            color: #1e2b3c;
            line-height: 1.5;
            box-sizing: border-box;
            position: relative;
            overflow: visible; /* changed from hidden to visible so notes are never clipped */
            min-height: 700px;  /* give room for floating notes */
        }

        .ul-enclosure-module *,
        .ul-enclosure-module *::before,
        .ul-enclosure-module *::after {
            box-sizing: inherit;
        }

        /* accent colors: primary #0D7C90, decorative #c724b1 (musical notes) */
        .ul-enclosure-module .accent-primary {
            color: #0D7C90;
            border-color: #0D7C90;
        }
        .ul-enclosure-module .accent-note {
            color: #c724b1;
        }

        /* -----  musical note decorations (repositioned to be fully visible)  ----- */
        .ul-enclosure-module .note-deco {
            position: absolute;
            font-family: "Segoe UI Symbol", "Arial Unicode MS", "Apple Color Emoji", sans-serif;
            pointer-events: none;
            user-select: none;
            color: #c724b1;
            z-index: 10;        /* higher than before, definitely above backgrounds */
            white-space: nowrap;
            font-weight: 400;
            text-shadow: 0 0 2px rgba(199,36,177,0.3); /* subtle pop */
        }

        /* reposition each note so they are clearly within the page and not covered */
        .ul-enclosure-module .note-1 {
            top: 2%;
            left: 3%;
            transform: rotate(-5deg);
            font-size: 4.2rem;
            opacity: 0.2;
        }
        .ul-enclosure-module .note-2 {
            bottom: 5%;
            right: 4%;
            transform: rotate(8deg);
            font-size: 5rem;
            opacity: 0.18;
        }
        .ul-enclosure-module .note-3 {
            top: 20%;
            right: 6%;
            transform: rotate(-12deg) scaleX(-1);
            font-size: 3.8rem;
            opacity: 0.16;
        }
        .ul-enclosure-module .note-4 {
            bottom: 15%;
            left: 5%;
            transform: rotate(15deg);
            font-size: 4.5rem;
            opacity: 0.17;
        }
        .ul-enclosure-module .note-5 {
            top: 60%;
            left: 20%;
            transform: rotate(-5deg);
            font-size: 3.5rem;
            opacity: 0.15;
        }

        /* section titles */
        .ul-enclosure-module .section-title {
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 2.5rem 0 1.25rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #0D7C90;
            display: inline-block;
            color: #1a2b3c;
            position: relative;
            z-index: 5;
        }

        /* manifesto / philosophy block */
        .ul-enclosure-module .manifesto {
            position: relative;
            background: #f8fafd;
            padding: 2.2rem 2.5rem;
            margin-bottom: 2.5rem;
            border-left: 6px solid #0D7C90;
            box-shadow: inset 0 0 0 1px rgba(13, 124, 144, 0.15);
            font-size: 1.05rem;
            z-index: 5;
        }
        .ul-enclosure-module .manifesto p {
            margin: 0 0 0.9rem 0;
            color: #1f2e3f;
        }
        .ul-enclosure-module .manifesto p:last-child {
            margin-bottom: 0;
        }

        /* standard table – clean, structured */
        .ul-enclosure-module .standard-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 30, 50, 0.04);
            position: relative;
            z-index: 5;
        }
        .ul-enclosure-module .standard-table th {
            background-color: #f2f6f9;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 1rem 1.2rem;
            border-bottom: 2px solid #0D7C90;
            color: #0D7C90;
        }
        .ul-enclosure-module .standard-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #e2eaf0;
            vertical-align: top;
            background: white;
        }
        .ul-enclosure-module .standard-table tr:last-child td {
            border-bottom: none;
        }
        .ul-enclosure-module .standard-table td:first-child {
            font-weight: 500;
            color: #0D7C90;
            border-left: 2px solid transparent;
        }
        .ul-enclosure-module .standard-table tr:hover td:first-child {
            border-left-color: #0D7C90;
        }

        /* design phase cards – grid (no connecting line) */
        .ul-enclosure-module .design-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 2rem 0 2rem;
            position: relative;
            z-index: 5;
        }
        .ul-enclosure-module .design-card {
            background: #fbfdff;
            border: 1px solid #e0e9f2;
            padding: 1.5rem 1rem 1.2rem 1rem;
            transition: all 0.1s ease;
            position: relative;
            box-shadow: 0 4px 12px -6px rgba(13, 124, 144, 0.2);
        }
        .ul-enclosure-module .design-card:hover {
            border-color: #0D7C90;
            box-shadow: 0 8px 20px -12px #0D7C90;
        }
        .ul-enclosure-module .step-number {
            display: inline-block;
            width: 32px;
            height: 32px;
            line-height: 32px;
            text-align: center;
            background: white;
            border: 1.5px solid #0D7C90;
            color: #0D7C90;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .ul-enclosure-module .design-card .phase {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a2b3c;
            margin: 0 0 0.4rem 0;
        }
        .ul-enclosure-module .design-card .task {
            font-size: 0.9rem;
            color: #3e5266;
            margin: 0 0 0.3rem 0;
            line-height: 1.4;
        }

        /* small reset inside module */
        .ul-enclosure-module p, .ul-enclosure-module div, .ul-enclosure-module table, .ul-enclosure-module h2 {
            margin: 0 0 0.8rem 0;
        }
        .ul-enclosure-module h2 {
            font-size: 1.8rem;
            margin-bottom: 0.2rem;
        }

        /* hr line minimal, no icon */
        .ul-enclosure-module hr {
            border: none;
            border-top: 2px solid #e4ecf5;
            margin: 1.8rem 0 0.5rem;
            position: relative;
            z-index: 5;
        }
    