        body {
            background-color: var(--bgInverse);
            margin: 0px;
            color: var(--bgInverse);

            --bg0: #e5e5e5;
            --bg1: #ddd;
            --bg2: #d5d5d5;
            --bgInverse: #444;
            --bgBorder: #c5c5c5;

            --bgStroke: var(--bg1) 2px 0px 0px, var(--bg1) 1.75517px 0.958851px 0px, var(--bg1) 1.0806px 1.68294px 0px, var(--bg1) 0.141474px 1.99499px 0px, var(--bg1) -0.832294px 1.81859px 0px, var(--bg1) -1.60229px 1.19694px 0px, var(--bg1) -1.97999px 0.28224px 0px, var(--bg1) -1.87291px -0.701566px 0px, var(--bg1) -1.30729px -1.51361px 0px, var(--bg1) -0.421592px -1.95506px 0px, var(--bg1) 0.567324px -1.91785px 0px, var(--bg1) 1.41734px -1.41108px 0px, var(--bg1) 1.92034px -0.558831px 0px;

            --accent: #18778C;
            --accentLight: #1a8fa8;
            --accentDark: #125a6a;

            --body: 'Inter', sans-serif;
            --title: 'DM Sans', sans-serif;
            --mono: 'JetBrains Mono', 'SF Mono', 'Monaco', monospace;
        }

        a { text-decoration: none; color: var(--bgInverse); }
        *, *::before, *::after { box-sizing: border-box; }

        /* Smooth scrolling */
        html { scroll-behavior: smooth; }

        /* Selection styling */
        ::selection {
            background: var(--accent);
            color: var(--bg1);
        }

        /* Main Container */
        .uv-body {
            padding: 20px;
            background-color: var(--bg1);
            min-height: 100vh;
            box-sizing: border-box;
            position: relative;
        }

        .uv-body2 {
            border: solid 1px var(--bgBorder);
            min-height: calc(100vh - 40px);
            border-radius: 15px;
            background-color: var(--bg1);
            overflow: hidden;
            position: relative;
        }

        /* Hero Grid */
        .uv-hero {
            display: grid;
            grid-template-columns: 1fr 2fr;
            position: relative;
            overflow: hidden;
        }

        .uv-hero-color {
            position: absolute;
            z-index: 10;
            pointer-events: none;
            height: 75vh;
            width: 75vh;
            bottom: 0;
            left: 0;
            background: radial-gradient(circle at bottom left, var(--accent), transparent 70%);
            opacity: .25;
            border-radius: 0;
            animation:
                pulse-glow-opacity 8s ease-in-out infinite,
                pulse-glow-drift 12s ease-in-out infinite;
        }

        @keyframes pulse-glow-opacity {
            0%, 100% { opacity: 0.23; }
            33% { opacity: 0.27; }
            66% { opacity: 0.24; }
        }

        @keyframes pulse-glow-drift {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(2px, -1px) scale(1.003);
            }
            50% {
                transform: translate(-1px, 2px) scale(1.006);
            }
            75% {
                transform: translate(1px, 1px) scale(1.002);
            }
        }

        /* Left Column */
        .uv-left {
            padding: clamp(35px, 6vw, 100px);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-end;
            position: relative;
            border-right: solid 1px var(--bgBorder);
        }

        /* Logo */
        .uv-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: absolute;
            top: 50px;
            left: 50px;
            z-index: 50;
            font: 500 12px / 15px var(--body);
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: .35px;
            text-shadow: var(--bgStroke);
            transition: transform 0.3s ease;
        }

        .uv-logo:hover {
            transform: scale(1.05);
        }

        .uv-logo img {
            height: 65px;
            width: 65px;
            border-radius: 10px;
            margin-bottom: 12px;
            object-fit: contain;
        }

        /* Icon */
        .uv-icon {
            border: solid 1px var(--bgBorder);
            padding: 24px;
            height: 250px;
            width: 250px;
            border-radius: 100%;
            box-sizing: border-box;
            margin-left: -10px;
            position: relative;
            background-color: var(--bg1);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .uv-icon:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 60px rgba(24, 119, 140, 0.15);
        }

        .uv-icon::before {
            display: block;
            content: '';
            border-radius: 100%;
            background-color: var(--accent);
            position: absolute;
            box-sizing: border-box;
            height: 12px;
            width: 12px;
            bottom: 23px;
            left: 37px;
            box-shadow: 0px 0px 0px 10px var(--bg1);
            animation: dot-pulse 2s ease-in-out infinite;
        }

        .uv-icon::after {
            display: block;
            content: '';
            border-radius: 100%;
            background-color: var(--accent);
            position: absolute;
            box-sizing: border-box;
            height: 20px;
            width: 20px;
            top: 25px;
            right: 27px;
            box-shadow: 0px 0px 0px 10px var(--bg1);
            animation: dot-pulse 2s ease-in-out infinite 0.5s;
        }

        @keyframes dot-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .uv-icon-inner {
            height: 100%;
            width: 100%;
            border-radius: 100%;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .uv-icon-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100%;
            filter: saturate(0.55);
        }

        .uv-icon-inner::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 100%;
            background: rgba(200,200,200,0.08);
            pointer-events: none;
        }

        /* Title */
        .uv-left h2 {
            margin: clamp(20px, 4vh, 35px) 0px clamp(20px, 3vh, 30px) 0px;
            font: 900 clamp(50px, 7vh, 65px) / 1 var(--title);
            letter-spacing: -1px;
            text-align: right;
            text-transform: uppercase;
            padding-left: clamp(20px, 3vw, 50px);
            position: relative;
            z-index: 1;
        }

        .uv-left h2 div {
            font: 900 clamp(100px, 14vh, 140px) / 0.93 var(--title);
            text-transform: none;
            letter-spacing: -5px;
            background: linear-gradient(to bottom, var(--accent), var(--bgInverse) 75%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            padding-right: 10px;
            margin-right: -10px;
            animation: title-shimmer 3s ease-in-out infinite;
        }

        @keyframes title-shimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.1); }
        }

        /* Tags */
        .uv-tags {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .uv-tags div {
            border: solid 1px var(--bgBorder);
            box-sizing: border-box;
            padding: 14px;
            font: 500 12px / 12px var(--body);
            text-transform: uppercase;
            border-radius: 10px;
            background-color: var(--bg0);
            transition: all 0.3s ease;
            cursor: default;
        }

        .uv-tags div:hover {
            background-color: var(--accent);
            color: var(--bg1);
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(24, 119, 140, 0.2);
        }

        /* Description */
        .uv-left p {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            border-right: solid 1px var(--bgBorder);
            padding-right: 35px;
            text-align: right;
            margin-bottom: 0px;
            box-sizing: border-box;
            font: 14px / 21px var(--body);
            max-width: 300px;
            position: relative;
            z-index: 1;
        }

        .uv-left p::before {
            content: '';
            display: block;
            position: absolute;
            background-color: var(--accent);
            height: 10px;
            width: 10px;
            box-shadow: 0px 0px 0px 15px var(--bg1);
            border-radius: 100%;
            right: -5px;
            animation: dot-pulse 2s ease-in-out infinite 1s;
        }

        /* Right Column */
        .uv-right {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Nav Row */
        .uv-nav-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            padding: 30px;
            position: relative;
            z-index: 3;
        }

        /* Menu */
        .uv-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
        }

        /* Nav Logo - hidden on desktop, shown on mobile */
        .uv-nav-logo {
            display: none;
        }

        /* Nav Social */
        .uv-nav-social {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .uv-nav-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border: 1px solid var(--bgBorder);
            border-radius: 8px;
            color: var(--bgInverse);
            transition: all 0.3s ease;
        }

        .uv-nav-social a:hover {
            background: var(--bgInverse);
            color: var(--bg1);
            border-color: var(--bgInverse);
            transform: translateY(-2px);
        }

        .uv-nav-social svg {
            width: 16px;
            height: 16px;
        }

        .uv-menu::before {
            content: '';
            display: block;
            position: absolute;
            height: 600px;
            width: 600px;
            border: solid 1px var(--bgBorder);
            border-radius: 100%;
            top: -430px;
            left: -125px;
        }

        .uv-menu::after {
            content: '';
            display: block;
            position: absolute;
            height: 300px;
            width: 300px;
            border: solid 1px var(--bgBorder);
            border-radius: 100%;
            bottom: -245px;
            right: -150px;
        }

        .uv-menu a {
            display: block;
            font: 500 12px / 12px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border: solid 1px var(--bgBorder);
            border-radius: 8px;
            white-space: nowrap;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            background-color: var(--bg1);
            overflow: hidden;
        }

        .uv-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(24, 119, 140, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .uv-menu a:hover::before {
            left: 100%;
        }

        .uv-menu a:hover {
            background-color: var(--bg2);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .uv-menu a:nth-child(1) {
            background-color: var(--bgInverse);
            border-color: transparent;
            color: var(--bg1);
        }

        .uv-menu a:nth-child(1):hover {
            background-color: var(--accent);
        }

        /* Hero Content Area */
        .uv-hero-content {
            background-color: var(--bg1);
            flex-grow: 1;
            border-radius: 15px 0px 0px 0px;
            border-left: solid 1px var(--bgBorder);
            margin-left: -15px;
            border-top: solid 1px var(--bgBorder);
            position: relative;
            overflow: hidden;
            min-height: clamp(280px, 45vh, 450px);
        }

        .uv-hero-content canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
        }

        #noiseCanvas {
            background: var(--bg1);
            z-index: 1;
        }

        /* Decorative grid pattern overlay */
        .uv-hero-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(var(--bgBorder) 1px, transparent 1px),
                linear-gradient(90deg, var(--bgBorder) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.25;
            pointer-events: none;
            z-index: 1;
        }

        /* Evolution Visual Overlay */
        #evolutionCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            z-index: 2;
            pointer-events: auto;
            background: transparent;
        }


        /* Neural Architecture Styles */
        .uv-neural-container svg {
            width: 100%;
            height: 100%;
            overflow: visible;
            position: relative;
            z-index: 1;
        }

        .uv-neural-link {
            fill: none;
            stroke-width: 0.6;
            stroke-dasharray: 2,2,4,2;
            opacity: 0.7;
            animation: neuralDashes 0.8s linear infinite;
        }

        @keyframes neuralDashes {
            from { stroke-dashoffset: 10; }
            to { stroke-dashoffset: 0; }
        }

        .uv-neural-node {
            font-family: var(--body);
            font-size: 9px;
            font-weight: 600;
            fill: var(--bgInverse);
            text-transform: uppercase;
            letter-spacing: 0.2px;
        }

        .uv-hero-tagline {
            font: 500 18px / 28px var(--body);
            max-width: 500px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .uv-hero-cta {
            display: flex;
            gap: 15px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .uv-hero-cta a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 28px;
            font: 500 12px / 12px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .uv-hero-cta a:first-child {
            background-color: var(--bgInverse);
            color: var(--bg1);
        }

        .uv-hero-cta a:first-child::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .uv-hero-cta a:first-child:hover::before {
            left: 100%;
        }

        .uv-hero-cta a:first-child:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(24, 119, 140, 0.3);
        }

        .uv-hero-cta a:last-child {
            border: solid 1px var(--bgBorder);
            background-color: var(--bg0);
        }

        .uv-hero-cta a:last-child:hover {
            background-color: var(--bg2);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        /* Sections */
        .uv-section {
            border-top: solid 1px var(--bgBorder);
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .uv-section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .uv-section-header h3 {
            margin: 0;
            font: 800 11px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 3px;
            padding: 12px 18px;
            border: solid 1px var(--bgBorder);
            border-radius: 8px;
            background-color: var(--bg0);
            position: relative;
            overflow: hidden;
        }

        .uv-section-header h3::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accentLight));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .uv-section:hover .uv-section-header h3::before {
            transform: scaleX(1);
        }

        .uv-section-header::after {
            content: '';
            flex-grow: 1;
            height: 1px;
            background: linear-gradient(90deg, var(--bgBorder), transparent);
        }

        /* Core Value Grid */
        .uv-core-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Environment Feature Block */
        .uv-environment-block {
            margin-top: 30px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--bgInverse) 100%);
            border-radius: 12px;
            padding: 40px 45px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            color: var(--bg1);
            position: relative;
            overflow: hidden;
        }

        .uv-environment-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 90% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .uv-environment-content {
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .uv-environment-block h4 {
            margin: 0 0 12px 0;
            font: 700 20px / 26px var(--title);
            letter-spacing: -0.3px;
        }

        .uv-environment-block p {
            margin: 0 0 20px 0;
            font: 400 13px / 21px var(--body);
            opacity: 0.85;
            max-width: 500px;
        }

        .uv-environment-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .uv-environment-features span {
            padding: 8px 14px;
            font: 600 9px / 9px var(--body);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
        }

        .uv-environment-cta {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .uv-environment-btn {
            display: inline-block;
            padding: 16px 28px;
            font: 500 11px / 11px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: var(--bg1);
            color: var(--bgInverse);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .uv-environment-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .uv-core-card {
            border: solid 1px var(--bgBorder);
            border-radius: 12px;
            padding: 35px;
            background-color: var(--bg0);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            outline: none;
        }

        .uv-core-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accentLight));
            transform: scaleX(0) translateZ(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
            backface-visibility: hidden;
        }

        .uv-core-card:hover::before,
        .uv-core-card:focus::before,
        .uv-core-card:focus-within::before {
            transform: scaleX(1) translateZ(0);
        }

        .uv-core-card:hover,
        .uv-core-card:focus,
        .uv-core-card:focus-within {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(24, 119, 140, 0.12);
            border-color: var(--accent);
        }

        .uv-core-num {
            font: 900 12px / 12px var(--title);
            color: var(--accent);
            margin-bottom: 18px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 8px 12px;
            background: rgba(24, 119, 140, 0.08);
            border-radius: 6px;
        }

        .uv-core-card h4 {
            margin: 0 0 14px 0;
            font: 700 18px / 22px var(--title);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .uv-core-card p {
            margin: 0;
            font: 400 13px / 22px var(--body);
            opacity: 0.75;
        }

        /* ============================================
           NESTED CONTENT SECTIONS
           Clean, business-appropriate design
           ============================================ */

        /* Episode Section */
        .uv-episode-section {
            background: var(--bgInverse);
            position: relative;
            overflow: hidden;
        }

        .uv-episode-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            opacity: 0.08;
            pointer-events: none;
        }

        .uv-episode-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .uv-episode-label {
            display: inline-block;
            font: 700 10px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 14px;
        }

        .uv-episode-header h3 {
            font: 800 28px / 34px var(--title);
            margin: 0 0 14px 0;
            letter-spacing: -0.5px;
            color: #fff;
        }

        .uv-episode-header p {
            font: 400 14px / 22px var(--body);
            max-width: 500px;
            margin: 0 auto;
            color: rgba(255,255,255,0.65);
        }

        /* Grid Layout */
        .uv-episode-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.1);
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
        }

        /* Cards */
        .uv-episode-card {
            background: var(--bg1);
            transition: all 0.3s ease;
            position: relative;
        }

        .uv-episode-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, var(--accent), var(--accentLight));
            transition: height 0.3s ease;
        }

        .uv-episode-card:hover {
            background: var(--bg0);
        }

        .uv-episode-card:hover::before {
            height: 100%;
        }

        /* Card Header */
        .uv-episode-card-header {
            padding: 20px 22px;
            border-bottom: 1px solid var(--bgBorder);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .uv-episode-num {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accentLight) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font: 700 12px / 12px var(--body);
            color: var(--bg1);
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(24, 119, 140, 0.3);
        }

        .uv-episode-card-header h4 {
            font: 700 12px / 12px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            color: var(--bgInverse);
            flex-grow: 1;
        }

        .uv-episode-count {
            font: 600 9px / 9px var(--body);
            letter-spacing: 0.5px;
            color: var(--accent);
            background: rgba(24, 119, 140, 0.1);
            padding: 6px 10px;
            border-radius: 6px;
            border: 1px solid rgba(24, 119, 140, 0.2);
        }

        /* Card Body */
        .uv-episode-card-body {
            padding: 18px 22px 22px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* Field Groups */
        .uv-episode-field-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .uv-field-label {
            font: 700 9px / 9px var(--body);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            opacity: 0.7;
        }

        /* Tags */
        .uv-episode-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .uv-episode-tags span {
            font: 500 10px / 10px var(--mono);
            padding: 6px 10px;
            background: var(--bg2);
            border-radius: 6px;
            color: var(--bgInverse);
            transition: all 0.2s ease;
        }

        .uv-episode-tags span:hover {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accentLight) 100%);
            color: var(--bg1);
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(24, 119, 140, 0.25);
        }

        /* Footnote */
        .uv-episode-footnote {
            text-align: center;
            margin-top: 40px;
            font: 400 12px / 18px var(--body);
            color: rgba(255,255,255,0.55);
            position: relative;
            z-index: 1;
        }

        .uv-episode-footnote span {
            font-weight: 600;
            color: #fff;
        }

        /* Neural Network Section */
        .uv-neural-section {
            background: var(--bg1);
            position: relative;
            overflow: hidden;
        }

        /* Outer frame wrapper */
        .uv-neural-frame {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 610px;
            gap: 40px;
            border: solid 1px var(--bgBorder);
            border-radius: 15px;
            background: var(--bg0);
            overflow: hidden;
        }

        /* Gradient from lower-right - green/black */
        .uv-neural-frame::before {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(45, 90, 74, 0.15) 0%, rgba(74, 138, 106, 0.08) 40%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* Grid pattern overlay on frame */
        .uv-neural-frame::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(var(--bgBorder) 1px, transparent 1px),
                linear-gradient(90deg, var(--bgBorder) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
            mask-image: linear-gradient(to top left, black 0%, transparent 60%);
            -webkit-mask-image: linear-gradient(to top left, black 0%, transparent 60%);
        }

        .uv-neural-header {
            text-align: left;
            position: relative;
            z-index: 10;
            order: 2;
            padding: 40px clamp(25px, 4vw, 50px) 40px 0;
        }

        .uv-neural-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font: 700 11px / 11px var(--body);
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #2d5a4a;
            margin-bottom: 20px;
            padding: 10px 18px;
            border: 1px solid rgba(45, 90, 74, 0.3);
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(45, 90, 74, 0.1) 0%, rgba(74, 138, 106, 0.05) 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(45, 90, 74, 0.1);
        }

        .uv-neural-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #2d5a4a;
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        .uv-neural-header h2 {
            font: 900 48px / 48px var(--title);
            margin: 0 0 8px 0;
            letter-spacing: -1px;
            color: var(--bgInverse);
            text-transform: uppercase;
        }

        .uv-neural-header h2 em {
            display: block;
            font-style: normal;
            font-size: 82px;
            line-height: 86px;
            letter-spacing: -3px;
            text-transform: none;
            background: linear-gradient(to bottom, #4a8a6a, var(--bgInverse) 75%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: title-shimmer 3s ease-in-out infinite;
            margin-bottom: 4px;
        }

        .uv-neural-header h2 span {
            display: block;
            font-size: 38px;
            line-height: 44px;
            letter-spacing: -0.5px;
            text-transform: none;
            font-weight: 400;
            color: var(--textMuted);
        }

        .uv-neural-header p {
            font: 400 18px / 28px var(--body);
            color: var(--textMuted);
            max-width: 420px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid var(--bgBorder);
        }

        /* Category tags */
        .uv-neural-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 25px;
        }

        .uv-neural-categories span {
            font: 600 10px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #2d5a4a;
            padding: 8px 12px;
            border: 1px solid rgba(45, 90, 74, 0.25);
            border-radius: 4px;
            background: rgba(45, 90, 74, 0.05);
        }

        /* Neural Network Container */
        .uv-neural-container {
            position: relative;
            width: calc(100% - 50px);
            height: 560px;
            margin: 25px 0 25px 25px;
            order: 1;
            border: solid 1px var(--bgBorder);
            border-radius: 12px;
            background: var(--bg1);
            overflow: hidden;
        }

        /* Grid background */
        .uv-neural-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(var(--bgBorder) 1px, transparent 1px),
                linear-gradient(90deg, var(--bgBorder) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            pointer-events: none;
            z-index: 0;
        }

        /* Subtle inner glow - green */
        .uv-neural-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(45, 90, 74, 0.04) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        /* Corner accent marks */
        .uv-neural-corner {
            position: absolute;
            width: 40px;
            height: 40px;
            z-index: 2;
            pointer-events: none;
        }

        .uv-neural-corner::before,
        .uv-neural-corner::after {
            content: '';
            position: absolute;
            background: #2d5a4a;
            opacity: 0.4;
        }

        .uv-neural-corner::before {
            width: 20px;
            height: 2px;
        }

        .uv-neural-corner::after {
            width: 2px;
            height: 20px;
        }

        .uv-neural-corner-tl { top: 12px; left: 12px; }
        .uv-neural-corner-tl::before { top: 0; left: 0; }
        .uv-neural-corner-tl::after { top: 0; left: 0; }

        .uv-neural-corner-tr { top: 12px; right: 12px; }
        .uv-neural-corner-tr::before { top: 0; right: 0; }
        .uv-neural-corner-tr::after { top: 0; right: 0; }

        .uv-neural-corner-bl { bottom: 12px; left: 12px; }
        .uv-neural-corner-bl::before { bottom: 0; left: 0; }
        .uv-neural-corner-bl::after { bottom: 0; left: 0; }

        .uv-neural-corner-br { bottom: 12px; right: 12px; }
        .uv-neural-corner-br::before { bottom: 0; right: 0; }
        .uv-neural-corner-br::after { bottom: 0; right: 0; }

        /* SVG Network Lines */
        .uv-neural-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .uv-neural-line {
            stroke: var(--accent);
            stroke-width: 1;
            fill: none;
            opacity: 0.15;
        }

        .uv-neural-line-pulse {
            stroke: var(--accent);
            stroke-width: 2;
            fill: none;
            opacity: 0;
            animation: linePulse 3s ease-in-out infinite;
        }

        @keyframes linePulse {
            0%, 100% { opacity: 0; stroke-dashoffset: 1000; }
            50% { opacity: 0.6; }
        }

        /* Nodes Container */
        .uv-neural-nodes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        /* Individual Node */
        .uv-node {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 3;
        }

        .uv-node-core {
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(24, 119, 140, 0.5);
        }

        .uv-node-core::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid var(--accent);
            opacity: 0.3;
        }

        .uv-node-core::after {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(24, 119, 140, 0.3) 0%, transparent 70%);
            animation: nodeGlow 2s ease-in-out infinite;
        }

        @keyframes nodeGlow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.3); opacity: 0.8; }
        }

        .uv-node-label {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font: 600 10px / 10px var(--body);
            color: rgba(255,255,255,0.7);
            padding: 6px 10px;
            background: rgba(0,0,0,0.6);
            border: 1px solid rgba(24, 119, 140, 0.3);
            border-radius: 4px;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .uv-node-label.uv-label-top { bottom: 100%; margin-bottom: 12px; }
        .uv-node-label.uv-label-bottom { top: 100%; margin-top: 12px; }

        .uv-node:hover .uv-node-label {
            opacity: 1;
        }

        .uv-node:hover .uv-node-core {
            transform: scale(1.5);
            box-shadow: 0 0 40px rgba(24, 119, 140, 0.8);
        }

        /* Primary Nodes - Larger */
        .uv-node-primary .uv-node-core {
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, var(--accent) 0%, #4ecdc4 100%);
        }

        .uv-node-primary .uv-node-label {
            font: 700 11px / 11px var(--body);
            color: #fff;
            background: rgba(24, 119, 140, 0.2);
            border-color: var(--accent);
            opacity: 1;
        }

        /* Central Hub */
        .uv-node-hub .uv-node-core {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent) 0%, #4ecdc4 100%);
            box-shadow: 0 0 60px rgba(24, 119, 140, 0.6), 0 0 100px rgba(24, 119, 140, 0.3);
        }

        .uv-node-hub .uv-node-core::before {
            inset: -8px;
            border-width: 2px;
            opacity: 0.5;
        }

        .uv-node-hub .uv-node-core::after {
            inset: -25px;
            animation: hubGlow 3s ease-in-out infinite;
        }

        @keyframes hubGlow {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }

        .uv-node-hub .uv-hub-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font: 800 14px / 14px var(--title);
            color: #fff;
            letter-spacing: -0.5px;
        }

        .uv-node-hub .uv-node-label {
            font: 700 12px / 12px var(--body);
            opacity: 1;
            background: transparent;
            border: none;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Cluster Labels */
        .uv-cluster-label {
            position: absolute;
            font: 800 9px / 9px var(--body);
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.25);
            z-index: 1;
        }

        /* Animated Particles */
        .uv-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0;
            z-index: 0;
        }

        /* Staggered Node Animations */
        .uv-node:nth-child(1) .uv-node-core::after { animation-delay: 0s; }
        .uv-node:nth-child(2) .uv-node-core::after { animation-delay: 0.3s; }
        .uv-node:nth-child(3) .uv-node-core::after { animation-delay: 0.6s; }
        .uv-node:nth-child(4) .uv-node-core::after { animation-delay: 0.9s; }
        .uv-node:nth-child(5) .uv-node-core::after { animation-delay: 1.2s; }
        .uv-node:nth-child(6) .uv-node-core::after { animation-delay: 0.15s; }
        .uv-node:nth-child(7) .uv-node-core::after { animation-delay: 0.45s; }
        .uv-node:nth-child(8) .uv-node-core::after { animation-delay: 0.75s; }
        .uv-node:nth-child(9) .uv-node-core::after { animation-delay: 1.05s; }
        .uv-node:nth-child(10) .uv-node-core::after { animation-delay: 1.35s; }

        /* Line pulse animation */
        .uv-neural-line {
            stroke-dasharray: 5 3;
            animation: lineFlow 20s linear infinite;
        }

        @keyframes lineFlow {
            0% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: -100; }
        }

        /* Highlight connections on node hover */
        .uv-node:hover ~ .uv-neural-svg .uv-neural-line {
            opacity: 0.3;
        }

        /* Pricing Grid - Nested Cards */
        .uv-pricing-section {
            background: var(--bg1);
        }

        /* Mobile-only pricing elements - hidden on desktop */
        .uv-pricing-tabs,
        .uv-pricing-indicators {
            display: none;
        }

        /* Academic Pricing Section - Compact */
        .uv-academic-section {
            margin-top: 40px;
            border: 1px solid var(--bgBorder);
            border-radius: 14px;
            overflow: hidden;
            background: linear-gradient(135deg, #2d5a4a 0%, var(--bgInverse) 100%);
        }

        .uv-academic-inner {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            padding: 35px 40px;
            align-items: center;
        }

        .uv-academic-content h3 {
            margin: 0 0 8px 0;
            font: 800 14px / 14px var(--body);
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--bg1);
        }

        .uv-academic-content p {
            margin: 0 0 20px 0;
            font: 400 14px / 22px var(--body);
            color: var(--bg1);
            opacity: 0.85;
            max-width: 480px;
        }

        .uv-academic-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .uv-academic-tag {
            padding: 10px 16px;
            font: 500 10px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 6px;
            background: rgba(255,255,255,0.12);
            color: var(--bg1);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .uv-academic-cta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .uv-academic-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            font: 600 11px / 11px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            background: var(--bg1);
            color: var(--bgInverse);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .uv-academic-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .uv-academic-btn::after {
            content: '\2192';
            font-size: 14px;
        }

        .uv-academic-note {
            font: 400 10px / 10px var(--body);
            color: var(--bg1);
            opacity: 0.6;
            text-align: right;
        }

        @media (max-width: 900px) {
            .uv-academic-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .uv-academic-content p { max-width: none; }
            .uv-academic-tags { justify-content: center; }
            .uv-academic-cta { align-items: center; }
            .uv-academic-note { text-align: center; }
        }

        .uv-pricing-container {
            border: 1px solid var(--bgBorder);
            border-radius: 14px;
            overflow: hidden;
            background: var(--bgBorder);
        }

        .uv-pricing-header {
            background: var(--bgInverse);
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .uv-pricing-header h3 {
            margin: 0;
            font: 800 11px / 11px var(--body);
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--bg1);
        }

        .uv-pricing-header-pills {
            display: flex;
            gap: 8px;
        }

        .uv-pricing-pill {
            padding: 8px 14px;
            font: 500 10px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            color: var(--bg1);
        }

        .uv-tiers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--bgBorder);
        }

        .uv-tier-card {
            background: var(--bg0);
            padding: 30px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
        }

        .uv-tier-card:hover {
            background: var(--bg1);
        }

        .uv-tier-card.featured {
            background: linear-gradient(to bottom, var(--accent), var(--bgInverse));
            color: var(--bg1);
        }

        .uv-tier-card.featured:hover {
            background: linear-gradient(to bottom, var(--accentLight), var(--accent));
        }

        .uv-tier-label {
            display: inline-block;
            font: 900 10px / 10px var(--title);
            letter-spacing: 1px;
            padding: 6px 10px;
            border: 1px solid var(--bgBorder);
            border-radius: 5px;
            margin-bottom: 12px;
            background: var(--bg1);
            align-self: flex-start;
        }

        .uv-tier-card.featured .uv-tier-label {
            border-color: rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.15);
            color: var(--bg1);
        }

        .uv-tier-name {
            font: 700 16px / 20px var(--title);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .uv-tier-price {
            margin-bottom: 20px;
        }

        .uv-tier-price span {
            font: 900 32px / 32px var(--title);
        }

        .uv-tier-price label {
            font: 400 11px / 11px var(--body);
            opacity: 0.6;
            margin-left: 3px;
        }

        .uv-tier-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            flex-grow: 1;
        }

        .uv-tier-features li {
            font: 400 12px / 16px var(--body);
            padding: 8px 0;
            border-bottom: 1px solid var(--bgBorder);
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .uv-tier-features li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .uv-tier-card.featured .uv-tier-features li {
            border-color: rgba(255,255,255,0.15);
        }

        .uv-tier-card.featured .uv-tier-features li::before {
            background: var(--bg1);
        }

        .uv-tier-features li:last-child {
            border-bottom: none;
        }

        .uv-tier-btn {
            display: block;
            text-align: center;
            padding: 14px 20px;
            font: 600 10px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            border: 1px solid var(--bgBorder);
            background: var(--bg1);
            transition: all 0.3s ease;
        }

        .uv-tier-btn:hover {
            background: var(--bgInverse);
            color: var(--bg1);
            border-color: var(--bgInverse);
        }

        .uv-tier-card.featured .uv-tier-btn {
            background: var(--bg1);
            color: var(--bgInverse);
            border-color: var(--bg1);
        }

        /* FAQ Section - Redesigned */
        .uv-faq-section {
            background: var(--bg1);
        }

        .uv-faq-container {
            border: 1px solid var(--bgBorder);
            border-radius: 14px;
            overflow: hidden;
        }

        .uv-faq-header {
            background: var(--bg0);
            padding: 22px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-bottom: 1px solid var(--bgBorder);
            position: relative;
        }

        .uv-faq-header::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent);
        }

        .uv-faq-header h3 {
            margin: 0;
            font: 800 13px / 13px var(--title);
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--bgInverse);
        }

        .uv-faq-categories {
            display: flex;
            gap: 8px;
        }

        .uv-faq-cat {
            padding: 8px 14px;
            font: 600 9px / 9px var(--body);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: transparent;
            border: 1px solid var(--bgBorder);
            border-radius: 5px;
            color: var(--bgInverse);
            cursor: default;
            transition: all 0.2s ease;
        }

        .uv-faq-cat[data-cat="data"] { border-color: var(--accent); color: var(--accent); }
        .uv-faq-cat[data-cat="rl"] { border-color: #2d5a4a; color: #2d5a4a; }
        .uv-faq-cat[data-cat="integration"] { border-color: #8c6518; color: #8c6518; }
        .uv-faq-cat[data-cat="research"] { border-color: #888; color: #666; }

        .uv-faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--bgBorder);
        }

        .uv-faq-item {
            background: var(--bg0);
            padding: 28px 30px;
            transition: all 0.3s ease;
        }

        .uv-faq-item:hover {
            background: var(--bg1);
        }

        .uv-faq-item-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .uv-faq-num {
            font: 900 11px / 11px var(--title);
            color: var(--accent);
            opacity: 0.6;
        }

        .uv-faq-tag {
            padding: 5px 10px;
            font: 600 8px / 8px var(--body);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            color: var(--bg1);
        }

        .uv-faq-tag[data-cat="data"] { background: var(--accent); }
        .uv-faq-tag[data-cat="rl"] { background: #2d5a4a; }
        .uv-faq-tag[data-cat="integration"] { background: #8c6518; }
        .uv-faq-tag[data-cat="research"] { background: #666; }

        .uv-faq-question {
            font: 600 13px / 18px var(--title);
            margin: 0 0 10px 0;
        }

        .uv-faq-answer {
            font: 400 12px / 20px var(--body);
            opacity: 0.7;
            margin: 0;
        }

        /* Contact Modal */
        .uv-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(68, 68, 68, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .uv-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .uv-modal {
            background: var(--bg1);
            border: 1px solid var(--bgBorder);
            border-radius: 16px;
            max-width: 420px;
            width: 100%;
            padding: 40px;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.3s ease;
        }

        .uv-modal-overlay.active .uv-modal {
            transform: translateY(0) scale(1);
        }

        .uv-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: 1px solid var(--bgBorder);
            border-radius: 8px;
            background: var(--bg0);
            color: var(--bgInverse);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            line-height: 1;
            transition: all 0.2s ease;
        }

        .uv-modal-close:hover {
            background: var(--bgInverse);
            color: var(--bg1);
            border-color: var(--bgInverse);
        }

        .uv-modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .uv-modal-label {
            display: inline-block;
            font: 700 9px / 9px var(--body);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .uv-modal-title {
            font: 800 24px / 28px var(--title);
            color: var(--bgInverse);
            margin: 0 0 8px 0;
        }

        .uv-modal-subtitle {
            font: 400 13px / 20px var(--body);
            color: var(--bgInverse);
            opacity: 0.6;
            margin: 0;
        }

        .uv-modal-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .uv-modal-option {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 20px;
            background: var(--bg0);
            border: 1px solid var(--bgBorder);
            border-radius: 12px;
            text-decoration: none;
            color: var(--bgInverse);
            transition: all 0.25s ease;
        }

        .uv-modal-option:hover {
            background: var(--bgInverse);
            color: var(--bg1);
            border-color: var(--bgInverse);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .uv-modal-option-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--bg1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.25s ease;
        }

        .uv-modal-option:hover .uv-modal-option-icon {
            background: var(--accent);
        }

        .uv-modal-option-icon svg {
            width: 22px;
            height: 22px;
            color: var(--bgInverse);
            transition: color 0.25s ease;
        }

        .uv-modal-option:hover .uv-modal-option-icon svg {
            color: var(--bg1);
        }

        .uv-modal-option-content {
            flex: 1;
        }

        .uv-modal-option-title {
            font: 600 14px / 14px var(--body);
            margin-bottom: 4px;
        }

        .uv-modal-option-desc {
            font: 400 11px / 11px var(--body);
            opacity: 0.6;
        }

        .uv-modal-option:hover .uv-modal-option-desc {
            opacity: 0.8;
        }

        .uv-modal-option-arrow {
            font-size: 18px;
            opacity: 0.4;
            transition: all 0.25s ease;
        }

        .uv-modal-option:hover .uv-modal-option-arrow {
            opacity: 1;
            transform: translateX(3px);
        }

        @media (max-width: 600px) {
            .uv-modal {
                padding: 28px 24px;
                border-radius: 14px;
            }
            .uv-modal-title { font-size: 20px; line-height: 24px; }
            .uv-modal-option { padding: 16px; gap: 14px; }
            .uv-modal-option-icon { width: 40px; height: 40px; }
            .uv-modal-option-icon svg { width: 20px; height: 20px; }
            .uv-modal-option-title { font-size: 13px; }
            .uv-modal-option-desc { font-size: 10px; }
        }

        /* CTA Section - HP Block Style */
        .uv-cta-block {
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 60px 60px;
            position: relative;
            background: linear-gradient(to top, var(--accent), var(--bgInverse));
        }

        .uv-cta-label {
            position: absolute;
            top: 0;
            margin: 0;
            border-radius: 0 0 28px 28px;
            background-color: var(--bg1);
            font: 800 11px / 10px var(--body);
            text-transform: uppercase;
            padding: 10px 25px 18px 25px;
            letter-spacing: 3px;
            white-space: nowrap;
        }

        .uv-cta-label::before {
            content: '';
            display: block;
            height: 20px;
            width: 20px;
            border-radius: 0 10px 0 0;
            box-shadow: 10px -10px 0 var(--bg1);
            position: absolute;
            top: 0;
            left: -20px;
        }

        .uv-cta-label::after {
            content: '';
            display: block;
            height: 20px;
            width: 20px;
            border-radius: 10px 0 0 0;
            box-shadow: -10px -10px 0 var(--bg1);
            position: absolute;
            top: 0;
            right: -20px;
        }

        .uv-cta-content {
            text-align: center;
            color: var(--bg1);
            margin-top: 20px;
        }

        .uv-cta-title {
            font: 700 28px / 34px var(--title);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .uv-cta-text {
            font: 400 14px / 22px var(--body);
            opacity: 0.8;
            max-width: 450px;
            margin: 0 auto 30px;
        }

        .uv-cta-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .uv-cta-btn-primary {
            padding: 16px 32px;
            font: 600 11px / 11px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 10px;
            background: var(--bg1);
            color: var(--bgInverse);
            transition: all 0.3s ease;
        }

        .uv-cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .uv-cta-btn-secondary {
            padding: 16px 32px;
            font: 500 11px / 11px var(--body);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--bg1);
            transition: all 0.3s ease;
        }

        .uv-cta-btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        /* Footer - Clean Nested */
        .uv-footer {
            border-top: 1px solid var(--bgBorder);
            padding: 50px 60px 30px;
            background: var(--bg0);
        }

        .uv-footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .uv-footer-brand {
            max-width: 280px;
        }

        .uv-footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .uv-footer-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            object-fit: contain;
        }

        .uv-footer-logo span {
            font: 700 16px / 16px var(--title);
            letter-spacing: -0.5px;
        }

        .uv-footer-tagline {
            font: 400 13px / 21px var(--body);
            opacity: 0.7;
            margin-bottom: 20px;
        }

        .uv-footer-social {
            display: flex;
            gap: 8px;
        }

        .uv-footer-social a {
            width: 36px;
            height: 36px;
            background: var(--bg1);
            border: 1px solid var(--bgBorder);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font: 500 11px / 11px var(--body);
            transition: all 0.3s ease;
        }

        .uv-footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg1);
        }

        .uv-footer-social svg {
            width: 14px;
            height: 14px;
        }

        .uv-footer-column h5 {
            font: 800 9px / 9px var(--body);
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.5;
            margin-bottom: 18px;
        }

        .uv-footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .uv-footer-column li {
            margin-bottom: 10px;
        }

        .uv-footer-column a {
            font: 400 13px / 13px var(--body);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .uv-footer-column a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .uv-footer-bottom {
            padding-top: 25px;
            border-top: 1px solid var(--bgBorder);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .uv-footer-copy {
            font: 500 10px / 10px var(--body);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.5;
        }

        .uv-footer-legal {
            display: flex;
            gap: 25px;
        }

        .uv-footer-legal a {
            font: 400 10px / 10px var(--body);
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .uv-footer-legal a:hover {
            opacity: 1;
        }

        /* Scroll animations */
        .uv-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .uv-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive - Height-based scaling for smaller laptops */
        @media (max-height: 900px) {
            .uv-body { padding: 15px; }
            .uv-body2 { min-height: calc(100vh - 30px); }
            .uv-left { padding: clamp(25px, 4vw, 60px); }
            .uv-left h2 { margin: 20px 0px 20px 0px; }
            .uv-left h2 div { font-size: clamp(80px, 12vh, 140px); line-height: 0.95; }
            .uv-tags { margin-bottom: 15px; gap: 8px; }
            .uv-tags div { padding: 10px 12px; font-size: 11px; }
            .uv-left p { font-size: 13px; line-height: 20px; padding-right: 25px; }
            .uv-nav-row { padding: 20px; }
            .uv-hero-content { min-height: 300px; }
        }

        @media (max-height: 750px) {
            .uv-body { padding: 10px; }
            .uv-body2 { min-height: calc(100vh - 20px); }
            .uv-left { padding: clamp(20px, 3vw, 40px); }
            .uv-left h2 { margin: 15px 0px 15px 0px; font-size: 50px; line-height: 50px; }
            .uv-left h2 div { font-size: clamp(70px, 10vh, 100px); }
            .uv-tags div { padding: 8px 10px; font-size: 10px; }
            .uv-left p { font-size: 12px; line-height: 18px; }
            .uv-nav-row { padding: 15px 20px; }
            .uv-menu a { padding: 12px; font-size: 11px; }
            .uv-hero-content { min-height: 250px; }
        }

        /* Responsive - Width-based */
        @media (max-width: 1200px) {
            .uv-episode-grid { grid-template-columns: repeat(2, 1fr); }
            .uv-tiers-grid { grid-template-columns: repeat(2, 1fr); }
            .uv-tier-card.featured { transform: scale(1); }
        }

        @media (max-width: 1024px) {
            .uv-hero { grid-template-columns: 1fr; position: relative; }

            /* Reorder: nav appears first, then hero content */
            .uv-left { order: 2; position: relative; z-index: 1; }
            .uv-right { order: 1; position: static; }

            /* Show noise map behind hero content, hide neural network */
            .uv-hero-content {
                display: block;
                position: absolute;
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                height: calc(100% - 80px); /* Subtract nav header height */
                border-radius: 0;
                z-index: 0;
                border: none;
                margin: 0;
            }
            #evolutionCanvas { display: none; }
            .uv-nav-row { position: relative; z-index: 2; background: var(--bg1); }

            .uv-left {
                border-right: none;
                border-bottom: none;
                border-top: solid 1px var(--bgBorder);
                align-items: center;
                padding-bottom: 60px;
                padding-top: 50px;
            }
            .uv-left h2 { text-align: center; }
            .uv-tags { justify-content: center; }
            .uv-left p {
                text-align: center;
                border-right: none;
                padding-right: 0;
            }
            .uv-left p::before { display: none; }
            .uv-nav-row { flex-wrap: wrap; padding: 20px; }
            .uv-nav-social { order: -1; width: 100%; justify-content: flex-end; margin-bottom: 12px; }
            .uv-menu { justify-content: center; }
            .uv-menu a { padding: 12px 14px; font-size: 11px; }
            .uv-core-grid { grid-template-columns: repeat(2, 1fr); }
            .uv-environment-block { flex-direction: column; align-items: flex-start; gap: 25px; padding: 35px 40px; }
            .uv-environment-cta { align-self: flex-start; }
            .uv-episode-header { margin-bottom: 40px; }
            .uv-process-grid { grid-template-columns: repeat(2, 1fr); }
            .uv-faq-grid { grid-template-columns: 1fr; }
            .uv-faq-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .uv-faq-categories { flex-wrap: wrap; }
            .uv-footer-grid { grid-template-columns: 1fr 1fr; }
            .uv-footer-brand { grid-column: span 2; max-width: none; }
            .uv-neural-frame {
                grid-template-columns: 1fr;
                text-align: center;
                min-height: auto;
                gap: 0;
            }
            .uv-neural-header {
                text-align: center;
                order: 1;
                padding: 40px 35px 30px;
            }
            .uv-neural-header h2 { font-size: 32px; line-height: 34px; }
            .uv-neural-header h2 em { font-size: 56px; line-height: 60px; }
            .uv-neural-header h2 span { font-size: 28px; line-height: 34px; }
            .uv-neural-header p { margin: 20px auto 0; }
            .uv-neural-categories { justify-content: center; }
            .uv-neural-container {
                order: 2;
                width: calc(100% - 40px);
                height: 450px;
                margin: 0 20px 20px;
            }
        }

        @media (max-width: 600px) {
            .uv-body { padding: 10px; }
            .uv-left h2 { font-size: 38px; line-height: 42px; letter-spacing: -0.5px; }
            .uv-left h2 div { font-size: 96px; line-height: 88px; letter-spacing: -4px; }
            .uv-section { padding: 50px 20px; }
            .uv-hero-cta { flex-direction: column; }

            /* Mobile nav header - refined single row */
            .uv-nav-row {
                padding: 14px 18px;
                gap: 12px;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid var(--bgBorder);
                background: var(--bg1);
                position: relative;
                z-index: 2;
            }

            /* Show nav logo on mobile - refined mark */
            .uv-nav-logo {
                display: flex !important;
                align-items: center;
                flex-shrink: 0;
            }
            .uv-nav-logo img {
                height: 36px;
                width: 36px;
                border-radius: 7px;
                object-fit: contain;
                box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            }

            /* Hide original logo on mobile */
            .uv-logo { display: none; }

            /* Minimal nav links - uniform text style */
            .uv-menu {
                gap: 0;
                flex-shrink: 1;
                min-width: 0;
            }
            .uv-menu::before,
            .uv-menu::after { display: none; }
            .uv-menu a {
                padding: 6px 10px;
                font: 500 10px / 10px var(--body);
                letter-spacing: 0.5px;
                white-space: nowrap;
                border: none;
                background: transparent;
                color: var(--bgInverse);
            }
            .uv-menu a:hover,
            .uv-menu a:active {
                background: transparent;
                transform: none;
                box-shadow: none;
            }
            .uv-menu a::before { display: none; }
            /* Hide capabilities & faq */
            .uv-menu a:nth-child(2),
            .uv-menu a:nth-child(4) { display: none; }
            /* Reset first child special styling */
            .uv-menu a:nth-child(1),
            .uv-menu a:nth-child(1):hover,
            .uv-menu a:nth-child(1):active,
            .uv-menu a:nth-child(1):focus {
                background: transparent;
                color: var(--bgInverse);
            }

            /* Minimal social icons - ghosted */
            .uv-nav-social {
                flex-shrink: 0;
                gap: 2px;
                width: auto;
                order: 0;
                margin-bottom: 0;
            }
            .uv-nav-social a {
                width: 28px;
                height: 28px;
                border: none;
                background: transparent;
                color: var(--bgInverse);
                opacity: 0.5;
            }
            .uv-nav-social a:hover {
                opacity: 1;
                background: transparent;
                transform: none;
            }
            .uv-nav-social svg { width: 14px; height: 14px; }

            /* Adjust noise map height for smaller mobile nav */
            .uv-hero-content {
                height: calc(100% - 57px); /* Smaller nav header on mobile */
            }
            .uv-left {
                padding-top: 30px;
            }

            .uv-core-grid { grid-template-columns: 1fr; }
            .uv-environment-block { padding: 28px 22px; }
            .uv-environment-block h4 { font-size: 17px; line-height: 23px; }
            .uv-environment-features span { padding: 7px 12px; font-size: 8px; }
            .uv-episode-grid { grid-template-columns: 1fr; }
            .uv-episode-header h3 { font-size: 26px; line-height: 32px; }

            /* Episode cards accordion on mobile */
            .uv-episode-card-header {
                cursor: pointer;
                position: relative;
                padding-right: 50px;
            }
            .uv-episode-card-header::after {
                content: '+';
                position: absolute;
                right: 22px;
                top: 50%;
                transform: translateY(-50%);
                font: 400 20px / 20px var(--body);
                color: var(--accent);
                transition: transform 0.3s ease;
            }
            .uv-episode-card.accordion-open .uv-episode-card-header::after {
                content: '−';
            }
            .uv-episode-card-body {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, padding 0.3s ease;
                padding: 0 22px;
            }
            .uv-episode-card.accordion-open .uv-episode-card-body {
                max-height: 500px;
                padding: 20px 22px;
            }
            .uv-process-grid { grid-template-columns: 1fr; }

            /* Pricing mobile - Tabbed Carousel */
            .uv-pricing-container {
                overflow: hidden;
                border-radius: 12px;
            }
            .uv-pricing-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 16px 20px;
            }
            .uv-pricing-header h3 { font-size: 10px; }
            .uv-pricing-header-pills { flex-wrap: wrap; gap: 6px; }
            .uv-pricing-pill { padding: 6px 10px; font-size: 8px; }

            /* Tab Navigation - Clean segmented control */
            .uv-pricing-tabs {
                display: flex;
                padding: 12px 16px;
                gap: 6px;
                background: var(--bg1);
                border-bottom: 1px solid var(--bgBorder);
            }
            .uv-pricing-tab {
                flex: 1;
                padding: 10px 6px;
                font: 600 8px / 8px var(--body);
                text-transform: uppercase;
                letter-spacing: 0.3px;
                text-align: center;
                color: var(--bgInverse);
                opacity: 0.45;
                background: transparent;
                border: 1px solid transparent;
                border-radius: 6px;
                cursor: pointer;
                transition: all 0.2s ease;
                white-space: nowrap;
            }
            .uv-pricing-tab.active {
                opacity: 1;
                background: var(--bg0);
                border-color: var(--bgBorder);
                box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            }
            .uv-pricing-tab.featured-tab.active {
                border-color: var(--accent);
                color: var(--accent);
            }

            /* Carousel Container */
            .uv-tiers-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 0;
                background: var(--bg0);
            }
            .uv-tiers-grid::-webkit-scrollbar { display: none; }

            /* Carousel Cards */
            .uv-tier-card {
                flex: 0 0 100%;
                scroll-snap-align: start;
                padding: 24px 24px 28px;
                border-radius: 0;
                border: none;
                background: var(--bg0);
            }
            .uv-tier-card.featured {
                background: linear-gradient(to bottom, var(--accent), var(--bgInverse));
                border: none;
            }
            .uv-tier-label { font-size: 9px; padding: 5px 8px; margin-bottom: 10px; }
            .uv-tier-name { font-size: 14px; margin-bottom: 12px; }
            .uv-tier-price { margin-bottom: 16px; }
            .uv-tier-price span { font-size: 28px; }
            .uv-tier-price label { font-size: 10px; }
            .uv-tier-features { margin-bottom: 20px; }
            .uv-tier-features li { font-size: 11px; line-height: 15px; padding: 7px 0; }
            .uv-tier-btn {
                padding: 14px 20px;
                font-size: 9px;
                border-radius: 6px;
            }

            /* Separator + Indicators */
            .uv-pricing-indicators {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                padding: 18px 20px;
                background: var(--bg0);
                border-top: 1px solid var(--bgBorder);
            }
            .uv-pricing-dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--bgBorder);
                border: none;
                cursor: pointer;
                transition: all 0.2s ease;
                padding: 0;
            }
            .uv-pricing-dot:hover { background: var(--bgInverse); opacity: 0.6; }
            .uv-pricing-dot.active {
                background: var(--accent);
                width: 20px;
                border-radius: 3px;
            }


            /* Academic section mobile */
            .uv-academic-section { margin-top: 20px; border-radius: 10px; }
            .uv-academic-inner { padding: 24px 20px; gap: 20px; }
            .uv-academic-content h3 { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 10px; }
            .uv-academic-content p { font-size: 12px; line-height: 19px; margin-bottom: 16px; }
            .uv-academic-tags { gap: 6px; margin-bottom: 4px; }
            .uv-academic-tag { padding: 8px 12px; font-size: 8px; letter-spacing: 0.5px; border-radius: 5px; }
            .uv-academic-cta { width: 100%; gap: 10px; }
            .uv-academic-btn {
                padding: 14px 24px;
                width: 100%;
                text-align: center;
                justify-content: center;
                font-size: 10px;
                border-radius: 8px;
            }
            .uv-academic-btn::after { font-size: 12px; }
            .uv-academic-note { font-size: 9px; margin-top: 2px; }

            /* FAQ mobile improvements */
            .uv-faq-header { padding: 18px 20px; }
            .uv-faq-item { padding: 22px 20px; }
            .uv-faq-cat { padding: 6px 10px; font-size: 8px; }
            .uv-faq-item-header { gap: 10px; margin-bottom: 0; }
            .uv-faq-question { font-size: 12px; line-height: 17px; cursor: pointer; position: relative; padding-right: 30px; }
            .uv-faq-question::after {
                content: '+';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                font: 400 18px / 18px var(--body);
                color: var(--accent);
                transition: transform 0.3s ease;
            }
            .uv-faq-item.faq-open .uv-faq-question::after {
                content: '−';
            }
            .uv-faq-answer {
                font-size: 11px;
                line-height: 18px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, margin 0.3s ease;
                margin-top: 0;
            }
            .uv-faq-item.faq-open .uv-faq-answer {
                max-height: 200px;
                margin-top: 12px;
            }

            /* Section headers mobile */
            .uv-section-header h3 { font-size: 12px; }

            .uv-neural-frame { border-radius: 10px; }
            .uv-neural-header { padding: 30px 20px 25px; }
            .uv-neural-container {
                height: 380px;
                width: calc(100% - 24px);
                margin: 0 12px 12px;
                border-radius: 8px;
            }
            .uv-neural-header h2 { font-size: 20px; line-height: 22px; }
            .uv-neural-header h2 em { font-size: 48px; line-height: 52px; letter-spacing: -1px; }
            .uv-neural-header h2 span { font-size: 16px; line-height: 22px; }
            .uv-neural-header p { font-size: 13px; line-height: 20px; padding-top: 18px; margin-top: 18px; }
            .uv-neural-header p strong { font-size: 12px; }
            .uv-neural-label { padding: 8px 12px; font-size: 9px; letter-spacing: 2px; }
            .uv-neural-categories { gap: 6px; }
            .uv-neural-categories span { font-size: 8px; padding: 6px 10px; }
            .uv-neural-corner::before { width: 15px; }
            .uv-neural-corner::after { height: 15px; }

            /* CTA mobile */
            .uv-cta-block { padding: 40px 22px 50px; }
            .uv-cta-title { font-size: 22px; line-height: 28px; }
            .uv-cta-text { font-size: 13px; line-height: 20px; }
            .uv-cta-actions { flex-direction: column; gap: 12px; }
            .uv-cta-btn-primary, .uv-cta-btn-secondary { width: 100%; text-align: center; padding: 18px 24px; }

            /* Footer mobile */
            .uv-footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .uv-footer-brand { grid-column: span 1; text-align: center; }
            .uv-footer-social { justify-content: center; }
            .uv-footer-column { text-align: center; }
            .uv-footer-column ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
            .uv-footer-column li { display: inline; }
            .uv-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .uv-footer { padding: 40px 25px 25px; }
        }

        /* Large screens (4K, ultrawide) */
        @media (min-width: 1800px) {
            .uv-neural-frame {
                min-height: 650px;
            }
            .uv-neural-container {
                height: 600px;
            }
            .uv-neural-node {
                font-size: 10px;
            }
        }

        @media (min-width: 2200px) {
            .uv-neural-frame {
                min-height: 700px;
            }
            .uv-neural-container {
                height: 650px;
            }
            .uv-neural-node {
                font-size: 11px;
            }
        }
