
    /* Page-specific styles only — navbar uses enterprise-theme from components.css */

    /* Enterprise navbar handled by unified-theme.css */


    /* VIBRANT MESH BACKGROUND BLOBS */
    .mesh-bg-container {
      position: fixed; width: 100vw; height: 100vh; top: 0; left: 0; z-index: 0; pointer-events: none; overflow: hidden;
      background: #f4f8ff;
    }
    .mesh-blob-1, .mesh-blob-2, .mesh-blob-3 {
      position: absolute;
      border-radius: 50%;
      filter: blur(140px);
      opacity: 0.7;
      animation: float-blob 20s infinite ease-in-out alternate;
    }
    .mesh-blob-1 { width: 50vw; height: 50vw; top: -10vw; left: -10vw; background: rgba(37, 91, 189, 0.2); }
    .mesh-blob-2 { width: 45vw; height: 45vw; top: 30vh; right: -15vw; background: rgba(96, 165, 250, 0.2); animation-delay: -5s; }
    .mesh-blob-3 { width: 60vw; height: 60vw; bottom: -20vh; left: 10vw; background: rgba(37, 91, 189, 0.15); animation-delay: -10s; }
    @keyframes float-blob {
      0% { transform: scale(1) translate(0, 0); }
      100% { transform: scale(1.3) translate(8vw, -8vw); }
    }

    /* Main page content wrapper — sits above the fixed mesh bg */
    main { position: relative; z-index: 2; }

    /* HERO */
    .uiux-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #F8FAFF 0%, #e8f0ff 50%, #f0f5ff 100%); padding-top: 90px; padding-bottom: 30px; }
    .hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(37,91,189,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,91,189,0.05) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; z-index: 0; }
    .hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45; animation: orbDrift 12s ease-in-out infinite alternate; pointer-events: none; }
    .hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #427de8, #255bbd); top: -100px; right: -100px; }
    .hero-orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, #7eaeff, #255bbd); bottom: -50px; left: 10%; animation-delay: -4s; }
    .hero-orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, #90e0ef, #00b4d8); top: 30%; left: 40%; animation-delay: -8s; opacity: 0.2; }
    @keyframes orbDrift { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.08); } 100% { transform: translate(-20px,20px) scale(0.95); } }
    .hero-particle { position: absolute; border-radius: 50%; background: #255bbd; opacity: 0; animation: particleFly var(--dur, 8s) ease-in-out infinite; pointer-events: none; }
    @keyframes particleFly { 0% { transform: translateY(0) scale(0.5); opacity: 0; } 20% { opacity: 0.6; } 80% { opacity: 0.3; } 100% { transform: translateY(-120px) scale(1.2); opacity: 0; } }
    .uiux-hero-inner { position: relative; z-index: 2; max-width: 1650px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,91,189,0.1); border: 1px solid rgba(37,91,189,0.25); border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: #255bbd; margin-bottom: 24px; letter-spacing: 0.04em; text-transform: uppercase; animation: fadeSlideDown 0.8s ease both; }
    .hero-badge-dot { width: 7px; height: 7px; background: #255bbd; border-radius: 50%; animation: pulseDot 1.5s ease-in-out infinite; }
    @keyframes pulseDot { 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.6); opacity:0.5; } }
    .uiux-hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.1; color: #0D1B3E; margin-bottom: 24px; animation: fadeSlideDown 0.8s 0.15s ease both; }
    .hero-title-accent { background: linear-gradient(135deg, #255bbd, #255bbd, #0077b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .uiux-hero-desc { font-size: 1.1rem; color: #475569; line-height: 1.85; margin-bottom: 36px; max-width: 520px; animation: fadeSlideDown 0.8s 0.3s ease both; }
    .hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeSlideDown 0.8s 0.45s ease both; }
    @keyframes fadeSlideDown { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeSlideRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
    .btn-uiux-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: linear-gradient(135deg, #255bbd, #255bbd); color: white; font-size: 1rem; font-weight: 700; border-radius: 100px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(37,91,189,0.35); }
    .btn-uiux-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,91,189,0.45); color: white; }
    .btn-uiux-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: rgba(255,255,255,0.85); color: #0D1B3E; font-size: 1rem; font-weight: 700; border-radius: 100px; text-decoration: none; border: 1.5px solid rgba(37,91,189,0.2); transition: all 0.3s; backdrop-filter: blur(10px); }
    .btn-uiux-secondary:hover { border-color: #255bbd; color: #255bbd; transform: translateY(-2px); }
    /* ── HOLOGRAPHIC SCENE ── */
    .hero-visual { position: relative; animation: fadeSlideRight 0.9s 0.2s ease both; height: 520px; }
    .holo-scene { position: relative; width: 100%; height: 100%; perspective: 1100px; perspective-origin: 50% 45%; }
    .holo-stage { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.08s linear; }

    /* Particle canvas */
    #holoParticles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

    /* ── CENTRAL DASHBOARD ── */
    .holo-dashboard {
      position: absolute; left: 50%; top: 50%; width: 270px;
      transform: translate(-50%, -54%) rotateX(6deg) rotateY(-4deg);
      transform-style: preserve-3d;
      background: linear-gradient(160deg, rgba(20,50,105,0.96) 0%, rgba(28,69,142,0.95) 60%, rgba(37,99,235,0.92) 100%);
      border-radius: 22px;
      padding: 0;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 30px 80px rgba(28,69,142,0.55), 0 0 60px rgba(37,91,189,0.35);
      animation: dashFloat 7s ease-in-out infinite;
      z-index: 10;
      overflow: hidden;
      cursor: default;
      backdrop-filter: blur(10px);
    }
    .holo-dashboard::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, transparent 60%);
      pointer-events: none; z-index: 1;
    }
    @keyframes dashFloat {
      0%,100% { transform: translate(-50%, -54%) rotateX(6deg) rotateY(-4deg) translateY(0); box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 30px 80px rgba(28,69,142,0.55), 0 0 60px rgba(37,91,189,0.35); }
      50% { transform: translate(-50%, -54%) rotateX(6deg) rotateY(-4deg) translateY(-14px); box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 50px 100px rgba(28,69,142,0.65), 0 0 90px rgba(37,91,189,0.5); }
    }

    /* Dashboard header */
    .dash-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 16px 10px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      position: relative; z-index: 2;
    }
    .dash-menu-icon { display: flex; flex-direction: column; gap: 3px; cursor: pointer; padding: 4px; }
    .dash-menu-icon span { display: block; width: 16px; height: 1.5px; background: rgba(255,255,255,0.7); border-radius: 2px; }
    .dash-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }
    .dash-close { font-size: 14px; color: rgba(255,255,255,0.4); cursor: pointer; line-height: 1; }

    /* Dashboard tabs */
    .dash-tabs {
      display: flex; gap: 4px; padding: 8px 12px 0;
      position: relative; z-index: 2;
    }
    .dash-tab {
      flex: 1; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5);
      background: transparent; border: none; border-radius: 8px 8px 0 0;
      padding: 6px 4px; cursor: pointer; transition: all 0.3s;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .dash-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
    .dash-tab.active { color: #fff; background: rgba(255,255,255,0.15); border-bottom: 2px solid rgba(255,255,255,0.6); }

    /* Dashboard screens */
    .dash-screen { display: none; padding: 14px 16px; position: relative; z-index: 2; }
    .dash-screen.active { display: block; animation: screenIn 0.4s cubic-bezier(0.16,1,0.3,1) both; }
    @keyframes screenIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    /* Message items */
    .msg-item {
      display: flex; gap: 10px; align-items: flex-start;
      padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
      cursor: pointer; transition: background 0.2s; border-radius: 8px;
    }
    .msg-item:last-child { border-bottom: none; }
    .msg-item:hover { background: rgba(255,255,255,0.06); }
    .msg-avatar { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; }
    .av-a { background: linear-gradient(135deg, #F59E0B, #EF4444); }
    .av-b { background: linear-gradient(135deg, #10B981, #0077b6); }
    .av-c { background: linear-gradient(135deg, #255bbd, #255bbd); }
    .av-d { background: linear-gradient(135deg, #EC4899, #F43F5E); }
    .msg-body { flex: 1; min-width: 0; }
    .msg-name { font-size: 11px; font-weight: 700; color: white; margin-bottom: 2px; }
    .msg-text { font-size: 10px; color: rgba(255,255,255,0.55); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .msg-time { font-size: 9px; color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 2px; }

    /* Analytics screen */
    .analytics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
    .analytics-mini-card {
      background: rgba(255,255,255,0.1); border-radius: 12px; padding: 10px;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .analytics-mini-card .val { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 900; color: white; line-height: 1; }
    .analytics-mini-card .lbl { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; }
    .analytics-mini-card .trend { font-size: 9px; color: #34D399; margin-top: 4px; }
    .mini-bar-chart { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 10px; }
    .bar-row { display: flex; align-items: flex-end; gap: 4px; height: 50px; justify-content: space-around; }
    .bar-col { border-radius: 4px 4px 0 0; width: 18px; transition: height 0.6s ease; }
    .bc1 { background: linear-gradient(180deg,#A78BFA,#255bbd); }
    .bc2 { background: linear-gradient(180deg,#90e0ef,#0077b6); }
    .bc3 { background: linear-gradient(180deg,#FCA5A5,#F43F5E); }
    .bc4 { background: linear-gradient(180deg,#6EE7B7,#10B981); }
    .bc5 { background: linear-gradient(180deg,#FCD34D,#F59E0B); }
    .bc6 { background: linear-gradient(180deg,#A78BFA,#255bbd); }

    /* Tasks screen */
    .task-item {
      display: flex; align-items: center; gap: 8px; padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .task-item:last-child { border-bottom: none; }
    .task-check {
      width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      cursor: pointer; transition: all 0.2s;
    }
    .task-check.done { background: #10B981; border-color: #10B981; }
    .task-check.done::after { content: '✓'; font-size: 9px; color: white; font-weight: 700; }
    .task-label { font-size: 11px; color: rgba(255,255,255,0.8); flex: 1; }
    .task-item.done-task .task-label { text-decoration: line-through; opacity: 0.45; }
    .task-priority { font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 100px; }
    .tp-high { background: rgba(239,68,68,0.25); color: #FCA5A5; }
    .tp-med { background: rgba(245,158,11,0.25); color: #FCD34D; }
    .tp-low { background: rgba(0,180,216,0.25); color: #6EE7B7; }

    /* Dashboard bottom nav */
    .dash-bottom-nav {
      display: flex; justify-content: space-around;
      padding: 10px 16px 14px;
      border-top: 1px solid rgba(255,255,255,0.1);
      position: relative; z-index: 2;
    }
    .dash-nav-icon {
      width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.45); cursor: pointer; transition: all 0.25s; font-size: 13px;
    }
    .dash-nav-icon:hover, .dash-nav-icon.active { background: rgba(255,255,255,0.15); color: white; }

    /* ── FLOATING ELEMENTS ── */
    .holo-float {
      position: absolute;
      transform-style: preserve-3d;
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    }
    .holo-float:hover { z-index: 50 !important; }

    /* Weather Island */
    .holo-island {
      right: -40px; top: 40px; width: 180px;
      animation: islandFloat 8s ease-in-out infinite;
      z-index: 12;
    }
    @keyframes islandFloat {
      0%,100% { transform: translateY(0) rotateX(4deg) rotateY(6deg); }
      50% { transform: translateY(-12px) rotateX(4deg) rotateY(6deg); }
    }
    .holo-island:hover { transform: translateY(-8px) rotateX(4deg) rotateY(6deg) scale(1.05) !important; }
    .island-body {
      background: linear-gradient(180deg, #22c55e 0%, #15803d 40%, #78350f 70%, #a16207 100%);
      border-radius: 50% 50% 30% 30% / 40% 40% 20% 20%;
      width: 160px; height: 70px;
      position: relative;
      box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 8px 20px rgba(0,100,0,0.3);
      overflow: visible;
    }
    /* Island cliff sides */
    .island-body::after {
      content: '';
      position: absolute; bottom: -18px; left: 10%; right: 10%;
      height: 22px;
      background: linear-gradient(180deg, #92400e, #78350f);
      border-radius: 0 0 40% 40%;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }
    .island-tree {
      position: absolute;
      bottom: 30px;
    }
    .island-tree .trunk { width: 5px; height: 16px; background: #92400e; border-radius: 2px; margin: 0 auto; }
    .island-tree .leaves { width: 22px; height: 22px; background: radial-gradient(circle at 40% 40%, #4ade80, #16a34a); border-radius: 50% 50% 40% 40%; margin: -8px auto 0; box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
    .tree-l { left: 12px; }
    .tree-r { right: 18px; }
    .tree-m { left: 55px; }
    .tree-m .leaves { width: 18px; height: 18px; }
    /* Windmill */
    .windmill { position: absolute; bottom: 40px; left: 80px; }
    .wm-base { width: 8px; height: 60px; background: #475569; margin: 0 auto; clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%); }
    .wm-hub { width: 12px; height: 8px; background: #f8fafc; border-radius: 2px; position: absolute; top: -4px; left: -2px; z-index: 2; box-shadow: 0 2px 4px rgba(0,0,0,0.3); }
    .wm-blades { position: absolute; top: -40px; left: -36px; width: 80px; height: 80px; animation: windSpin 4s linear infinite; transform-origin: center; z-index: 1; }
    .wm-blade {
      position: absolute; width: 38px; height: 3px;
      background: #1e293b;
      border-radius: 1px; transform-origin: right center;
    }
    .wm-blade:nth-child(1) { top: 38px; right: 40px; transform: rotate(0deg); }
    .wm-blade:nth-child(2) { top: 38px; right: 40px; transform: rotate(120deg); }
    .wm-blade:nth-child(3) { top: 38px; right: 40px; transform: rotate(240deg); }
    @keyframes windSpin { to { transform: rotate(360deg); } }
    /* Cloud */
    .island-cloud {
      position: absolute;
      background: rgba(255,255,255,0.92);
      border-radius: 50px;
    }
    .cloud-a { width: 60px; height: 20px; top: 0px; left: 50px; animation: cloudDrift 12s ease-in-out infinite alternate; box-shadow: 0 4px 10px rgba(255,255,255,0.3); }
    .cloud-b { width: 40px; height: 14px; top: 10px; left: 20px; animation: cloudDrift 9s ease-in-out infinite alternate; animation-delay: -3s; opacity: 0.8; }
    .cloud-a::before, .cloud-b::before {
      content: ''; position: absolute; background: inherit; border-radius: 50%;
      width: 50%; height: 200%; top: -60%; left: 25%;
    }
    @keyframes cloudDrift { 0% { transform: translateX(0); } 100% { transform: translateX(20px); } }


    /* Analytics bar card */
    .holo-bar-card {
      left: -45px; bottom: 60px; width: 150px;
      animation: floatA 9s ease-in-out infinite;
      z-index: 7;
    }
    @keyframes floatA { 0%,100% { transform: translateY(0) rotateX(-4deg) rotateY(8deg); } 50% { transform: translateY(-10px) rotateX(-4deg) rotateY(8deg); } }
    .holo-bar-card:hover { transform: translateY(-10px) rotateX(-4deg) rotateY(8deg) scale(1.05) !important; }
    .glass-card-inner {
      background: rgba(15,23,62,0.88);
      border: 1px solid rgba(37,91,189,0.3);
      border-radius: 18px; padding: 14px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(37,91,189,0.2);
      backdrop-filter: blur(20px);
    }
    .glass-card-inner.light {
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(37,91,189,0.12);
      box-shadow: 0 20px 50px rgba(37,91,189,0.12);
      backdrop-filter: blur(20px);
    }
    .card-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
    .card-label.dark { color: #94A3B8; }
    .holo-bar-row { display: flex; align-items: flex-end; gap: 5px; height: 55px; }
    .holo-bar { border-radius: 4px 4px 0 0; min-width: 14px; transition: height 0.8s cubic-bezier(0.34,1.56,0.64,1); }
    .holo-bar-1 { background: linear-gradient(180deg, #427de8, #255bbd); }
    .holo-bar-2 { background: linear-gradient(180deg, #90e0ef, #0077b6); }
    .holo-bar-3 { background: linear-gradient(180deg, #427de8, #255bbd); }
    .holo-bar-4 { background: linear-gradient(180deg, #A78BFA, #255bbd); }
    .holo-bar-5 { background: linear-gradient(180deg, #90e0ef, #0077b6); }
    .bar-stat-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; }
    .bar-big-num { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 900; color: white; }
    .bar-change { font-size: 9px; color: #34D399; font-weight: 700; }

    /* Notification card */
    .holo-notif {
      right: -20px; bottom: 25px; width: 170px;
      animation: floatB 10s ease-in-out infinite;
      z-index: 9;
    }
    @keyframes floatB { 0%,100% { transform: translateY(0) rotateX(3deg) rotateY(-5deg); } 50% { transform: translateY(-8px) rotateX(3deg) rotateY(-5deg); } }
    .holo-notif:hover { transform: translateY(-8px) rotateX(3deg) rotateY(-5deg) scale(1.05) !important; }
    .notif-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .notif-app-icon { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, #255bbd, #255bbd); display: flex; align-items: center; justify-content: center; font-size: 12px; }
    .notif-app-name { font-size: 10px; font-weight: 700; color: #0F172A; }
    .notif-time { font-size: 9px; color: #94A3B8; margin-left: auto; }
    .notif-body { font-size: 11px; color: #334155; line-height: 1.45; }
    .notif-body strong { color: #0F172A; font-weight: 700; }
    .notif-actions { display: flex; gap: 6px; margin-top: 10px; }
    .notif-btn { font-size: 9px; font-weight: 700; padding: 5px 10px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
    .notif-btn.accept { background: #255bbd; color: white; }
    .notif-btn.dismiss { background: #F1F5F9; color: #64748B; }
    .notif-btn:hover { transform: scale(1.05); }

    /* Stats ticker card */
    .holo-stats {
      left: -35px; top: 30px; width: 155px;
      animation: floatC 11s ease-in-out infinite;
      z-index: 7;
    }
    @keyframes floatC { 0%,100% { transform: translateY(0) rotateX(5deg) rotateY(10deg); } 50% { transform: translateY(-10px) rotateX(5deg) rotateY(10deg); } }
    .holo-stats:hover { transform: translateY(-10px) rotateX(5deg) rotateY(10deg) scale(1.05) !important; }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .stat-mini {
      background: rgba(255,255,255,0.08); border-radius: 10px; padding: 8px 6px;
      text-align: center;
    }
    .stat-mini-num { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 900; color: white; line-height: 1; }
    .stat-mini-lbl { font-size: 8px; color: rgba(255,255,255,0.5); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }


    .timer-inner {
      background: linear-gradient(135deg, #EC4899, #F43F5E);
      border-radius: 16px; padding: 12px 16px; text-align: center;
      box-shadow: 0 16px 40px rgba(236,72,153,0.45), 0 0 30px rgba(244,63,94,0.3);
    }
    .timer-label { font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
    .timer-val { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 900; color: white; line-height: 1; letter-spacing: -0.02em; }
    .timer-play { width: 28px; height: 28px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 8px auto 0; cursor: pointer; transition: background 0.2s; font-size: 10px; }
    .timer-play:hover { background: rgba(255,255,255,0.3); }

    /* Molecule widget */
    .holo-molecule {
      left: 40%; bottom: -10px; width: 90px;
      animation: floatE 13s ease-in-out infinite;
      z-index: 6;
    }
    @keyframes floatE { 0%,100% { transform: translateY(0) rotateZ(0deg); } 50% { transform: translateY(-6px) rotateZ(5deg); } }

    /* Line chart card */
    .holo-linechart {
      right: 55px; bottom: 0px; width: 145px;
      animation: floatF 12s ease-in-out infinite;
      z-index: 8;
    }
    @keyframes floatF { 0%,100% { transform: translateY(0) rotateX(4deg) rotateY(-6deg); } 50% { transform: translateY(-9px) rotateX(4deg) rotateY(-6deg); } }
    .holo-linechart:hover { transform: translateY(-9px) rotateX(4deg) rotateY(-6deg) scale(1.05) !important; }
    .line-svg { width: 100%; height: 50px; }
    .line-path { fill: none; stroke: url(#lineGrad); stroke-width: 2; stroke-linecap: round; }
    .line-area { fill: url(#areaGrad); opacity: 0.3; }

    /* Connection line SVG overlay */
    #holoConnections { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; overflow: visible; }


    /* SECTIONS */
    .uiux-section { padding: 70px 0; }
    .uiux-container { max-width: 1650px; margin: 0 auto; padding: 0 30px; }
    .uiux-section-badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #255bbd; background: rgba(37,91,189,0.08); border: 1px solid rgba(37,91,189,0.2); border-radius: 100px; padding: 5px 14px; margin-bottom: 16px; }
    .uiux-section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #0D1B3E; line-height: 1.2; margin-bottom: 20px; }
    .uiux-section-desc { font-size: 1.05rem; color: #475569; line-height: 1.85; max-width: 700px; }

    /* INTRO */
    .intro-section { background: #FFFFFF; padding: 70px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .intro-visual { position: relative; }
    .intro-visual-main { background: linear-gradient(135deg, #e8f0ff, #f0f5ff); border-radius: 28px; padding: 36px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 20px 60px rgba(37,91,189,0.1); animation: floatHero 7s ease-in-out infinite; }
    .intro-stat-row { display: flex; gap: 14px; }
    .intro-stat-card { flex: 1; background: #FFFFFF; border-radius: 18px; padding: 20px; box-shadow: 0 4px 20px rgba(37,91,189,0.08); border: 1px solid rgba(37,91,189,0.06); }
    .intro-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 900; color: #255bbd; line-height: 1; margin-bottom: 4px; }
    .intro-stat-label { font-size: 12px; font-weight: 600; color: #64748B; text-transform: uppercase; letter-spacing: 0.06em; }
    .intro-bar-block { background: #FFFFFF; border-radius: 18px; padding: 20px; box-shadow: 0 4px 20px rgba(37,91,189,0.08); }
    .intro-bar-label { font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 10px; display: flex; justify-content: space-between; }
    .intro-bar-track { height: 8px; background: #E2E8F0; border-radius: 100px; overflow: hidden; margin-bottom: 14px; }
    .intro-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #255bbd, #255bbd); width: 0; transition: width 1.8s cubic-bezier(0.4,0,0.2,1); }
    .intro-floating-chip { position: absolute; background: white; border-radius: 16px; padding: 12px 18px; box-shadow: 0 12px 30px rgba(37,91,189,0.15); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 10px; animation: chipFloat 4s ease-in-out infinite alternate; }
    .ifc-1 { top: -20px; right: -10px; color: #255bbd; }
    .ifc-2 { bottom: -16px; left: 20px; color: #00b4d8; animation-delay: -2s; }
    .ifc-dot { width: 8px; height: 8px; border-radius: 50%; }
    .ifc-dot-purple { background: #255bbd; } .ifc-dot-blue { background: #00b4d8; }

    /* FEATURES */
    .features-section { background: #F8FAFF; padding: 70px 0; }
    .features-header { text-align: center; max-width: 750px; margin: 0 auto 60px; }
    .features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 40px; }
    .feature-card { background: #FFFFFF; border-radius: 22px; padding: 28px 20px; border: 1px solid rgba(37,91,189,0.08); box-shadow: 0 4px 20px rgba(37,91,189,0.04); transition: all 0.4s; text-align: center; position: relative; overflow: hidden; }
    .feature-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,91,189,0.04), transparent); opacity: 0; transition: opacity 0.4s; }
    .feature-card:hover { transform: translateY(-10px); box-shadow: 0 24px 50px rgba(37,91,189,0.12); border-color: rgba(37,91,189,0.2); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
    .feature-icon-1 { background: linear-gradient(135deg, #e8f0ff, #7eaeff); color: #255bbd; }
    .feature-icon-2 { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); color: #00b4d8; }
    .feature-icon-3 { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); color: #10B981; }
    .feature-icon-4 { background: linear-gradient(135deg, #f4f8ff, #E9D5FF); color: #60A5FA; }
    .feature-icon-5 { background: linear-gradient(135deg, #FFF7ED, #FED7AA); color: #F97316; }
    .feature-card h3 { font-size: 0.92rem; font-weight: 700; color: #0D1B3E; line-height: 1.4; position: relative; z-index: 1; }

    /* STATS */
    .stats-strip { background: linear-gradient(135deg, #0D1B3E, #1E293B); border-radius: 24px; padding: 40px; display: grid; grid-template-columns: repeat(4,1fr); position: relative; overflow: hidden; }
    .stats-strip::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(37,91,189,0.1), transparent 60%); pointer-events: none; }
    .stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 1; }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 900; background: linear-gradient(135deg, #427de8, #7eaeff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
    .stat-label { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }

    /* PROCESS */
    .process-section-uiux { background: #FFFFFF; padding: 70px 0; }
    .process-header-uiux { text-align: center; max-width: 700px; margin: 0 auto 70px; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 42px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(90deg, #255bbd, #255bbd, #0077b6); z-index: 0; }
    .process-step-uiux { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
    .step-number-bubble { width: 84px; height: 84px; border-radius: 50%; color: white; font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 12px 30px rgba(37,91,189,0.35); transition: all 0.4s; position: relative; animation: stepFloat var(--sf, 5s) ease-in-out infinite; }
    @keyframes stepFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .step-number-bubble::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px dashed rgba(37,91,189,0.3); animation: rotateBorder 10s linear infinite; }
    @keyframes rotateBorder { to { transform: rotate(360deg); } }
    .process-step-uiux:hover .step-number-bubble { transform: translateY(-6px) scale(1.08); box-shadow: 0 20px 40px rgba(37,91,189,0.45); }
    .step-content-card { background: #F8FAFF; border-radius: 20px; padding: 24px 20px; border: 1px solid rgba(37,91,189,0.08); transition: all 0.4s; }
    .process-step-uiux:hover .step-content-card { border-color: rgba(37,91,189,0.2); box-shadow: 0 16px 40px rgba(37,91,189,0.08); background: #fff; }
    .step-content-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 800; color: #0D1B3E; margin-bottom: 12px; }
    .step-content-card p { font-size: 0.9rem; color: #64748B; line-height: 1.75; }

    /* GROWTH */
    .growth-section { background: linear-gradient(135deg, #F8FAFF, #e8f0ff, #f0f5ff); padding: 70px 0; }
    .growth-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
    .growth-content p { font-size: 1.05rem; color: #475569; line-height: 1.85; margin-bottom: 20px; }
    .growth-highlight-box { background: white; border-radius: 20px; padding: 28px; border-left: 4px solid #255bbd; box-shadow: 0 8px 30px rgba(37,91,189,0.08); margin-top: 30px; font-size: 1rem; color: #0D1B3E; font-weight: 500; line-height: 1.7; font-style: italic; }
    .growth-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .growth-card { background: white; border-radius: 22px; padding: 28px 22px; box-shadow: 0 8px 30px rgba(37,91,189,0.08); border: 1px solid rgba(37,91,189,0.06); transition: all 0.4s; position: relative; overflow: hidden; }
    .growth-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #255bbd, #255bbd); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
    .growth-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(37,91,189,0.12); }
    .growth-card:hover::before { transform: scaleX(1); }
    .growth-card.wide { grid-column: span 2; }
    .growth-card-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .gci-1 { background: rgba(37,91,189,0.1); color: #255bbd; } .gci-2 { background: rgba(14,165,233,0.1); color: #00b4d8; } .gci-3 { background: rgba(0,180,216,0.1); color: #10B981; }
    .growth-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 800; color: #0D1B3E; margin-bottom: 10px; }
    .growth-card p { font-size: 0.9rem; color: #64748B; line-height: 1.7; }

    /* CTA */
    .uiux-cta-section { padding: 50px 24px; background: #F8FAFF; }
    .uiux-cta-panel { max-width: 1450px; margin: 0 auto; background: linear-gradient(135deg, #255bbd, #1E40AF, #255bbd); border-radius: 36px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 40px 80px rgba(28,69,142,0.3); }
    #ctaParticlesUiux { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
    .uiux-cta-content { position: relative; z-index: 2; }
    .uiux-cta-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 6px 20px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
    .uiux-cta-panel h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: #FFFFFF; margin-bottom: 20px; line-height: 1.15; }
    .uiux-cta-desc { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto 40px; line-height: 1.8; }
    .uiux-cta-subnote { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 550px; margin: 20px auto 0; line-height: 1.7; }
    .btn-cta-white { display: inline-flex; align-items: center; gap: 10px; padding: 18px 48px; background: #FFFFFF; color: #255bbd; font-size: 1.1rem; font-weight: 800; border-radius: 100px; text-decoration: none; transition: all 0.3s; box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
    .btn-cta-white:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.2); color: #255bbd; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(36px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    @media(max-width: 1024px) {
      .uiux-hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
      .uiux-hero-desc { max-width: 100%; }
      .hero-cta-group { justify-content: center; }
      .hero-visual { max-width: 520px; margin: 0 auto; }
      .intro-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: repeat(3, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .process-steps::before { display: none; }
      .growth-grid { grid-template-columns: 1fr; }
      .stats-strip { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
    }
    @media(max-width: 640px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
      .chip-2, .chip-3 { display: none; }
      .growth-visual { grid-template-columns: 1fr; }
      .growth-card.wide { grid-column: span 1; }
      .uiux-cta-panel { padding: 50px 24px; }
    }
  
/* --- GLOBAL MOBILE OPTIMIZATION PATCH --- */
@media (max-width: 768px) {
  /* Fix container paddings */
  section, .container, .container-balanced, .container-expanded, .main-content, .hero-container, .content-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    min-width: 0 !important;
  }
  
  /* Reset rigid min-widths causing overflow or squishing */
  [style*="min-width"], .bento-card, .glass-card, .r-card, .step-card, .folder-box, .glass-box {
    min-width: 0 !important;
    width: 100% !important;
  }
  
  /* Force inline flex containers to wrap */
  [style*="display: flex"] {
    flex-wrap: wrap !important;
  }
  
  /* Force common grid/flex layouts to stack vertically */
  .hero-bubble-layout, .bento-container, .glass-grid, .retail-grid, .hero-container, .zig-zag-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Reduce massive padding inside cards and CTA sections */
  .bento-card, .glass-card, .r-card, .step-card, .folder-box, .bento-glass, .glass-box, .massive-cta, .cta-glass-panel, .retail-cta, .r-cta-content {
    padding: 25px 20px !important;
  }
  
  /* Fix overlapping absolute elements in hero sections (e.g., Shopify page) */
  section > div > div[style*="position: relative; width: 100%; display: flex"] {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Avoid giant box shadows pushing width */
  .folder-box, .glass-card, .step-card, .bento-card {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05) !important;
  }
  
  /* --- UI UX PAGE MOBILE FIXES --- */
  
  body {
    overflow-x: hidden !important;
  }
  
  /* Fix custom containers ignoring global patch */
  .uiux-container, .uiux-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Fix intro content cut off and blowout */
  .intro-visual-main {
    margin: 0 auto;
    padding: 24px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .intro-content, .intro-bar-block {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .intro-stat-card {
    min-width: 0 !important;
    padding: 16px !important;
    box-sizing: border-box !important;
  }
  
  /* Fix floating chips causing horizontal overflow */
  .intro-floating-chip.ifc-1 {
    right: 10px !important;
  }
  .intro-floating-chip.ifc-2 {
    left: 10px !important;
  }

  /* Fix narrow process cards by overriding 2-column grid */
  .process-steps {
    grid-template-columns: 1fr !important;
  }
  
  /* Fix hero 3D visual visibility and size */
  .hero-visual {
    height: 380px !important;
    transform: scale(0.85);
    transform-origin: top center;
  }
  .uiux-hero-inner {
    gap: 10px !important;
  }
}
